FileDocCategorySizeDatePackage
UMLProperty.javaAPI DocExample870Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scriptapi.UML

UMLProperty.java

/*----------------------------------------------------------------------------
Copyright © 1998 Object International Software GmbH
----------------------------------------------------------------------------*/
package oisoft.togetherx.scriptapi.UML;

//------------------------------------------------------------------------------
/**
* Presents Property.
* Design (doc) properties are stored in the source code 
* in the javadoc format: @PropertyName PropertyValue
* Some properties having special meanings are listed 
* in teh constants of <i>Tags</i> interface. 
* @version  2.1.01  12.03.1998
* @author Sergey Dmitriev
* @see Tags
*/
public interface UMLProperty
{
  String getPropertyName();
  String getPropertyValue();
}
//------------------------------------------------------------------------------