Package cookxml.cookswing.helper

Examples of cookxml.cookswing.helper.ClientPropertyHelper


  public boolean add (String parentNS, String parentTag, Object parent, Object child, DecodeEngine decodeEngine)
  {
    if (!(parent instanceof JComponent) ||
      !(child instanceof ClientPropertyHelper))
      return false;
    ClientPropertyHelper helper = (ClientPropertyHelper)child;
    ((JComponent)parent).putClientProperty (helper.name, helper.value);
    return true;
  }
View Full Code Here

TOP

Related Classes of cookxml.cookswing.helper.ClientPropertyHelper

Copyright © 2018 www.massapicom. 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.