Package org.openjump.util.metaData
Class Attribute2UnitMap
- java.lang.Object
-
- org.openjump.util.metaData.Attribute2UnitMap
-
public class Attribute2UnitMap extends Object
Meta information object to store the units for the attributes in a layer.- Version:
- $Rev: 856 $
- Author:
- Ole Rahn
FH Osnabrück - University of Applied Sciences Osnabrück,
Project: PIROL (2005),
Subproject: Daten- und Wissensmanagement
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<String,String>
attribute2unit
protected static String
KEY_ATTRIBUTE2UNIT
key to be used in the meta information mapprotected boolean
useHTMLLineBreaks
-
Constructor Summary
Constructors Constructor Description Attribute2UnitMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsAttribute(String attributeName)
boolean
containsUnit(String unitString)
Map
getAttribute2unit()
for java2xmlString
getUnitString(String attributeName)
boolean
isUseHTMLLineBreaks()
tells you if @link{Attribute2UnitMap#toString()} uses <br> or just backslash+n to begin a new line.String
put(String attributeName, String unitString)
String
removeAttribute(String attributeName)
void
setAttribute2unit(HashMap<String,String> attribute2unit)
for java2xmlvoid
setUseHTMLLineBreaks(boolean useHTMLLineBreaks)
Controlls if @link{Attribute2UnitMap#toString()} uses <br> or just backslash+n to begin a new line.String
toString()
Collection
values()
-
-
-
Field Detail
-
useHTMLLineBreaks
protected boolean useHTMLLineBreaks
-
KEY_ATTRIBUTE2UNIT
protected static final String KEY_ATTRIBUTE2UNIT
key to be used in the meta information map- See Also:
- Constant Field Values
-
-
Method Detail
-
clear
public void clear()
-
containsAttribute
public boolean containsAttribute(String attributeName)
-
containsUnit
public boolean containsUnit(String unitString)
-
values
public Collection values()
-
isUseHTMLLineBreaks
public boolean isUseHTMLLineBreaks()
tells you if @link{Attribute2UnitMap#toString()} uses <br> or just backslash+n to begin a new line.- Returns:
- value of useHTMLLineBreaks
-
setUseHTMLLineBreaks
public void setUseHTMLLineBreaks(boolean useHTMLLineBreaks)
Controlls if @link{Attribute2UnitMap#toString()} uses <br> or just backslash+n to begin a new line.
-
getAttribute2unit
public Map getAttribute2unit()
for java2xml- Returns:
- attribute2unit map
-
-