Methods Summary |
---|
public void | actionPerformed(java.awt.event.ActionEvent ae)
int newValue = textComp.getIntValue();
setKeyFrameInterval(newValue);
|
public java.awt.Component | getControlComponent()
if (textComp == null) {
textComp = new TextComp(getName(),
Integer.toString(value), 3,
settable);
textComp.setActionListener(this);
}
return textComp;
|
public int | getKeyFrameInterval()
return value;
|
protected java.lang.String | getName()
return "Key Frames Every";
|
public int | getPreferredKeyFrameInterval()
return preferred;
|
public int | setKeyFrameInterval(int newValue)
if (settable) {
if (newValue < 1)
newValue = 1;
// if (newValue != value) {
value = newValue;
if (textComp != null) {
textComp.setValue(Integer.toString(value));
}
// }
return value;
} else
return -1;
|