package er.directtoweb.components; import com.webobjects.appserver.WOComponent; import com.webobjects.appserver.WOContext; import com.webobjects.directtoweb.D2WContext; /** * * @author mschrag * @d2wKey propertyKey */ public class ERD2WDebugPropertyName extends WOComponent { /** * Do I need to update serialVersionUID? * See section 5.6 <cite>Type Changes Affecting Serialization</cite> on page 51 of the * <a href="http://java.sun.com/j2se/1.4/pdf/serial-spec.pdf">Java Object Serialization Spec</a> */ private static final long serialVersionUID = 1L; public ERD2WDebugPropertyName(WOContext context) { super(context); } @Override public boolean synchronizesVariablesWithBindings() { return false; } // accessors public D2WContext d2wContext() { return (D2WContext) valueForBinding("d2wContext"); } }