FreeWRL/FreeX3D  3.0.0
EventInSFString.java
1 package vrml.external.field;
4 
5 
6 public class EventInSFString extends EventIn {
7  public EventInSFString() { EventType = FieldTypes.SFSTRING;}
8 
9  public void setValue(String value) {
10  Browser.newSendEvent (this, value.length() + ":" + value + " ");
11  return;
12  }
13 }