Hauptseite   Packages   Klassenhierarchie   ?bersicht   Auflistung der Dateien   Datenstruktur-Elemente  

Parameter.java

gehe zur Dokumentation dieser Datei
00001 /*
00002  * $Source: /shared/cvsroot/diplom/app/src/java/de/picana/ant/Parameter.java,v $
00003  * $Author: mstolpe $
00004  * $Date: 2003/04/22 09:51:27 $
00005  * $Revision: 1.2 $
00006  * $Release$
00007  *
00008  * Created on 23. Februar, 19:25
00009  *
00010  * Copyright 2002 by Marco Stolpe
00011  */
00012 
00013 package de.picana.ant;
00014 
00015 
00022 public class Parameter {
00023     
00024     private String name;
00025     private String value;
00026     
00027     
00029     public Parameter() {
00030     }
00031     
00032     public String getName() {
00033         return this.name;    
00034     }
00035     
00036     public void setName(String name) {
00037         this.name = name;
00038     }
00039     
00040     public String getValue() {
00041         return this.value;    
00042     }
00043     
00044     public void setValue(String value) {
00045         this.value = value;     
00046     }
00047 }

Erzeugt am Tue Apr 22 11:22:56 2003 f?r Picana von doxygen1.2.18