Package com.cosylab.vdct.inspector.sheet
Class SplitPropertyGroup
- java.lang.Object
-
- com.cosylab.vdct.inspector.sheet.SplitPropertyGroup
-
public class SplitPropertyGroup extends Object
- Author:
- ssah
-
-
Constructor Summary
Constructors Constructor Description SplitPropertyGroup(InspectableProperty owner, DBSheetSplitCol splitData)
SplitPropertyGroup(String value, DBSheetSplitCol splitData)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getErrorDesc()
InspectableProperty
getOwner()
SplitPropertyPart
getPart(int index)
static int
getPartsCount(String value, DBSheetSplitCol splitData)
int
getPatternParts()
Returns the number of parts that the property value was split into using split data.String
getValue()
boolean
isErrorInPattern()
boolean
isNestedGroups()
boolean
isPatternMatch()
void
setOwner(InspectableProperty owner)
void
setValuePart(SplitPropertyPart part)
-
-
-
Constructor Detail
-
SplitPropertyGroup
public SplitPropertyGroup(InspectableProperty owner, DBSheetSplitCol splitData)
- Parameters:
owner
- ownersplitData
- splitData
-
SplitPropertyGroup
public SplitPropertyGroup(String value, DBSheetSplitCol splitData)
- Parameters:
value
- valuesplitData
- splitData
-
-
Method Detail
-
getPartsCount
public static int getPartsCount(String value, DBSheetSplitCol splitData)
- Parameters:
value
- valuesplitData
- splitData- Returns:
- something
-
setValuePart
public void setValuePart(SplitPropertyPart part)
- Parameters:
part
- part
-
getOwner
public InspectableProperty getOwner()
- Returns:
- the owner
-
setOwner
public void setOwner(InspectableProperty owner)
- Parameters:
owner
- the owner to set
-
getPart
public SplitPropertyPart getPart(int index)
- Parameters:
index
- index- Returns:
- something
-
getPatternParts
public int getPatternParts()
Returns the number of parts that the property value was split into using split data.- Returns:
- the patternParts
-
isPatternMatch
public boolean isPatternMatch()
- Returns:
- the patternMatch
-
isNestedGroups
public boolean isNestedGroups()
- Returns:
- the nestedGroups
-
isErrorInPattern
public boolean isErrorInPattern()
- Returns:
- the errorInPattern
-
getErrorDesc
public String getErrorDesc()
- Returns:
- the errorDesc
-
getValue
public String getValue()
- Returns:
- the value
-
-