com.threerings.antidote
Interface Mutable

All Known Subinterfaces:
FieldWrapper<F>, Property<T>
All Known Implementing Classes:
BaseFieldWrapper, BaseProperty, BooleanProperty, EnumProperty, FileProperty, IntegerProperty, ListProperty, ModeProperty, NonEmptyListProperty, OptionalField, RequiredField, StringProperty, URLProperty

public interface Mutable

An Ant data type or task whose data is mutable, e.g. may be null.


Method Summary
 boolean isNotSet()
          Returns true if the Mutable data contained in this object is not set, e.g.
 boolean isSet()
          Returns true if the Mutable data contained in this object is set, e.g.
 

Method Detail

isSet

boolean isSet()
Returns true if the Mutable data contained in this object is set, e.g. not null. False otherwise.


isNotSet

boolean isNotSet()
Returns true if the Mutable data contained in this object is not set, e.g. null. False otherwise.



Copyright © 2007-2008 Three Rings Design, Inc. All Rights Reserved. Released under a BSD license.