Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package edu.kit.informatik;
  7.  
  8. /**
  9.  *
  10.  * @author Aaron
  11.  */
  12. public abstract class Wartebereich {
  13.    
  14.     public void add(Auftrag a) {
  15.        
  16.     }
  17.    
  18.     public Auftrag remove() {
  19.         return null;
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement