Package org.foo.shape.trapezoid

Examples of org.foo.shape.trapezoid.Trapezoid


   */
  private static void publishTrapezoidService() {
    Hashtable dict = new Hashtable();
    dict.put(SimpleShape.NAME_PROPERTY, "Trapezoid");
    dict.put(SimpleShape.ICON_PROPERTY, new ImageIcon(Trapezoid.class.getResource("trapezoid.png")));
    fwk.getBundleContext().registerService(SimpleShape.class.getName(), new Trapezoid(), dict);
  }
View Full Code Here

TOP

Related Classes of org.foo.shape.trapezoid.Trapezoid

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.