Package com.lightcrafts.mediax.jai

Examples of com.lightcrafts.mediax.jai.WritablePropertySource


      // Copy properties to the rendered node.
      if(rendering != null &&
         rendering instanceof WritablePropertySource) {
          String[] propertyNames = getPropertyNames();
    if(propertyNames != null){
        WritablePropertySource wps =
                        (WritablePropertySource)rendering;
        for(int j = 0; j < propertyNames.length; j++) {
      String name = propertyNames[j];
      Object value = getProperty(name);
      if(value != null &&
         value != java.awt.Image.UndefinedProperty) {
          wps.setProperty(name, value);
      }
        }
    }
      }

TOP

Related Classes of com.lightcrafts.mediax.jai.WritablePropertySource

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.