Package railo.intergral.fusiondebug.server.type

Source Code of railo.intergral.fusiondebug.server.type.FDValueNotMutability

package railo.intergral.fusiondebug.server.type;

import com.intergral.fusiondebug.server.FDLanguageException;
import com.intergral.fusiondebug.server.FDMutabilityException;
import com.intergral.fusiondebug.server.IFDValue;

public abstract class FDValueNotMutability implements IFDValue {

 
  public final boolean isMutable() {
    return false;
  }

  public final void set(String arg0) throws FDMutabilityException,FDLanguageException {
    throw new FDMutabilityException();
  }

}
TOP

Related Classes of railo.intergral.fusiondebug.server.type.FDValueNotMutability

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.