Package com.cosylab.vdct.graphics
Interface VDBInterface
-
- All Known Implementing Classes:
DSGUIInterface
,DsManager
public interface VDBInterface
Insert the type's description here. Creation date: (4.2.2001 15:36:01)- Author:
- cosylab
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
checkGroupName(String name, boolean relative)
Returns error message or null if OK Creation date: (3.2.2001 22:11:01)String
checkRecordName(String name, String oldName, boolean relative)
Returns error message or null if OK.Box
createBox()
Insert the method's description here.Line
createLine()
void
createRecord(String name, String type, boolean relative)
TextBox
createTextBox()
boolean
isErrorMessage(String message)
Returns true if the string returned by checkGroupName(...) and checkRecordName(...) is an error message and false when it is a warning.
-
-
-
Method Detail
-
checkGroupName
String checkGroupName(String name, boolean relative)
Returns error message or null if OK Creation date: (3.2.2001 22:11:01)- Parameters:
relative
- relativename
- java.lang.String- Returns:
- java.lang.String
-
checkRecordName
String checkRecordName(String name, String oldName, boolean relative)
Returns error message or null if OK. oldName can be null if not applicable. Creation date: (3.2.2001 22:11:01)- Parameters:
oldName
- oldNamerelative
- relativename
- java.lang.String- Returns:
- java.lang.String
-
createBox
Box createBox()
Insert the method's description here. Creation date: (3.2.2001 23:27:30)- Returns:
- something
-
createLine
Line createLine()
- Returns:
- something
-
createTextBox
TextBox createTextBox()
- Returns:
- something
-
createRecord
void createRecord(String name, String type, boolean relative)
- Parameters:
name
- nametype
- typerelative
- relative
-
isErrorMessage
boolean isErrorMessage(String message)
Returns true if the string returned by checkGroupName(...) and checkRecordName(...) is an error message and false when it is a warning.- Parameters:
message
- message- Returns:
- something
-
-