All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cfml.parsing.cfscript.script.CFPropertyStatement Maven / Gradle / Ivy

There is a newer version: 2.11.0
Show newest version
package cfml.parsing.cfscript.script;

import java.util.HashSet;
import java.util.List;
import java.util.Map;

import cfml.parsing.cfscript.CFExpression;
import cfml.parsing.cfscript.CFIdentifier;

public class CFPropertyStatement extends CFParsedAttributeStatement implements java.io.Serializable {
	
	private static final long serialVersionUID = 1L;
	
	private static HashSet validAttributes;
	private boolean shorthand = false;
	private CFExpression propertyName;
	private CFExpression propertyType;
	
	static {
		validAttributes = new HashSet();
		validAttributes.add("DEFAULT");
		validAttributes.add("TYPE");
		validAttributes.add("NAME");
		validAttributes.add("MAX");
		validAttributes.add("MIN");
		validAttributes.add("PATTERN");
	}
	
	public CFPropertyStatement(org.antlr.v4.runtime.Token t, Map _attributes) {
		super(t, _attributes);
		// validateAttributes(t, validAttributes);
	}
	
	@Override
	public String Decompile(int indent) {
		StringBuilder sb = new StringBuilder();
		sb.append("property");
		if (!shorthand) {
			DecompileAttributes(sb);
		} else {
			sb.append(" ");
			if (propertyType != null) {
				sb.append(propertyType.Decompile(0));
				sb.append(" ");
			}
			sb.append(propertyName.Decompile(0));
		}
		return sb.toString();
	}
	
	public static HashSet getValidAttributes() {
		return validAttributes;
	}
	
	public void setIsShortHand(boolean b) {
		shorthand = b;
	}
	
	public void setPropertyName(CFExpression cfExpression) {
		propertyName = cfExpression;
	}
	
	public void setPropertyType(CFExpression cfExpression) {
		propertyType = cfExpression;
	}
	
	public List decomposeExpression() {
		List retval = super.decomposeExpression();
		if (propertyName != null) {
			retval.add(propertyName);
		}
		if (propertyType != null) {
			retval.add(propertyType);
		}
		return retval;
	}
	
	public CFExpression getPropertyName() {
		return propertyName;
	}
	
	public CFExpression getPropertyType() {
		return propertyType;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy