swarm.collections
Interface String

All Known Implementing Classes:
StringImpl

public interface String
extends Create, CreateS, Drop, DropS, Copy, CopyS

Character string object (later to support collection behavior).. The String object type packages a null-terminated, C-format character string into an object. All memory allocation needed to hold the string value is handled by the object. This type currently defines only the most rudimentary operations for initializing and appending C-format character strings. These are sufficient for its current limited roles in places that need a uniformity between character strings and other kinds of allocated objects.


Method Summary
 void catC(java.lang.String cstring)
           
 java.lang.String getC()
           
 int getCount()
           
 
Methods inherited from interface swarm.defobj.Drop
drop
 
Methods inherited from interface swarm.defobj.Copy
copy
 
Methods inherited from interface swarm.defobj.DefinedObject
compare, describe, describeID, getDisplayName, getTypeName, getZone, perform, perform$with, perform$with$with, perform$with$with$with, respondsTo, setDisplayName, xfprint, xfprintid, xprint, xprintid
 
Methods inherited from interface swarm.defobj.GetName
getName
 

Method Detail

getC

public java.lang.String getC()

catC

public void catC(java.lang.String cstring)

getCount

public int getCount()