Package org.jabylon.properties
Interface PropertyFile
-
- All Superinterfaces:
org.eclipse.emf.cdo.CDOObject,org.eclipse.emf.cdo.common.id.CDOWithID,org.eclipse.emf.ecore.EObject,org.eclipse.emf.common.notify.Notifier
- All Known Implementing Classes:
PropertyFileImpl
public interface PropertyFile extends org.eclipse.emf.cdo.CDOObjectA representation of the model object 'Property File'.The following features are supported:
- See Also:
PropertiesPackage.getPropertyFile()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,Property>asMap()Returns a map view of the properties file.StringgetLicenseHeader()Returns the value of the 'License Header' attribute.org.eclipse.emf.common.util.EList<Property>getProperties()Returns the value of the 'Properties' containment reference list.PropertygetProperty(String key)voidsetLicenseHeader(String value)Sets the value of the 'License Header' attribute.-
Methods inherited from interface org.eclipse.emf.cdo.CDOObject
cdoConflict, cdoDirectResource, cdoHistory, cdoID, cdoInvalid, cdoLockState, cdoPrefetch, cdoReadLock, cdoReload, cdoResource, cdoRevision, cdoState, cdoView, cdoWriteLock, cdoWriteOption
-
-
-
-
Method Detail
-
getProperties
org.eclipse.emf.common.util.EList<Property> getProperties()
Returns the value of the 'Properties' containment reference list. The list contents are of typeProperty.If the meaning of the 'Properties' containment reference list isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Properties' containment reference list.
- See Also:
PropertiesPackage.getPropertyFile_Properties()
-
getLicenseHeader
String getLicenseHeader()
Returns the value of the 'License Header' attribute.If the meaning of the 'License Header' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'License Header' attribute.
- See Also:
setLicenseHeader(String),PropertiesPackage.getPropertyFile_LicenseHeader()
-
setLicenseHeader
void setLicenseHeader(String value)
Sets the value of the 'License Header' attribute.- Parameters:
value- the new value of the 'License Header' attribute.- See Also:
getLicenseHeader()
-
-