Changeset 7888

Show
Ignore:
Timestamp:
06/17/08 09:25:44 (5 years ago)
Author:
stedwar2
Message:

Tweaking the @version tag.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • ossiedev/branches/jsnyder/ComponentProject/src/edu/vt/ossie/wavedev/Property.java

    r7887 r7888  
    88 * Encapsulates a python wavedev.ComponentClass.Property object. 
    99 * 
    10  * @author $Author: Snyder.Jason $ 
    11  * @version $Id: $ 
     10 * @author $Author:Snyder.Jason $ 
     11 * @version $Revision$ $Date::            $ 
    1212 */ 
    1313public class Property extends NamedObject 
     
    1717        { 
    1818                super(original, factory); 
    19                  
     19 
    2020        } 
    21          
     21 
    2222        // ---------------------------------------------------------- 
    2323        public static final String PYTHON_CLASS = "ComponentClass.Property"; 
    24          
    25          
     24 
     25 
    2626        /** 
    2727         * @return 
     
    3131                return getString(ID); 
    3232        } 
    33          
     33 
    3434        /** 
    3535         * @return 
     
    4747                return getString(MODE); 
    4848        } 
    49          
     49 
    5050        public String toString() 
    5151        { 
    5252                return getName(); 
    5353        } 
    54          
     54 
    5555        public void setEnum(String enumeration) 
    5656        { 
    5757            put(ENUM, enumeration); 
    5858        } 
    59          
     59 
    6060        public void setKind(String kind) 
    6161        { 
    6262            put(KIND, kind); 
    6363        } 
    64          
     64 
    6565        public void setAction(String action) 
    6666        { 
    6767            put(ACTION, action); 
    6868        } 
    69          
     69 
    7070        public void setRange(PyTuple range) 
    7171        { 
    7272                put(RANGE, range); 
    73                  
     73 
    7474        } 
    75          
    76          
    77          
    78          
    79          
     75 
     76 
     77 
     78 
     79 
    8080 
    8181 
     
    8585    private static final String ELEMENT_TYPE    = "elementType"; 
    8686    private static final String MODE            = "mode"; 
    87     private static final String ID                          = "id";      
     87    private static final String ID                          = "id"; 
    8888    private static final String ENUM            = "enum"; 
    8989    private static final String KIND            = "kind"; 
     
    9292 
    9393 
    94          
     94 
    9595 
    9696}