LayoutFixScript.java :  » Swing-Library » wings3 » org » wings » plaf » css » script » Java Open Source

Java Open Source » Swing Library » wings3 
wings3 » org » wings » plaf » css » script » LayoutFixScript.java
package org.wings.plaf.css.script;

import org.wings.script.ScriptListener;

public class LayoutFixScript
    implements ScriptListener
{
    String name;

    public LayoutFixScript(String name) {
        this.name = name;
    }

    public String getEvent() {
        return null;
    }

    public String getCode() {
        return null;
    }

    public String getScript() {
        return "wingS.layout.fix('" + name + "');";
    }

    public int getPriority() {
        return DEFAULT_PRIORITY;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.