|
What this is
Other links
The source code/* * Sun Public License Notice * * The contents of this file are subject to the Sun Public License * Version 1.0 (the "License"). You may not use this file except in * compliance with the License. A copy of the License is available at * http://www.sun.com/ * * The Original Code is NetBeans. The Initial Developer of the Original * Code is Sun Microsystems, Inc. Portions Copyright 1997-2003 Sun * Microsystems, Inc. All Rights Reserved. */ package org.netbeans.modules.schema2beansdev; import java.io.*; import java.util.*; import org.netbeans.modules.schema2beans.*; import org.netbeans.modules.schema2beansdev.metadd.*; public interface CodeGeneratorClass { /** * This method is called by the BeanBuilder to register a new property * on this bean class. */ AbstractCodeGeneratorClass.Property addProperty(String name, String dtdName, String namespace, GraphNode node, GraphLink l, String classType, int nestedLevel, int eltInstance, int groupInstance, int type, boolean ored, AttrProp[] propAttributes, String constName, String defaultValue, boolean directChild, List extraData); void setPackageName(String n); /** * The string that is used for indentation. */ void setIndent(String indent); /** * Generate the java code in the out stream, using the optional * metaDD bean graph. */ void generate(String filename, MetaDD mdd) throws IOException; /** * Generate the java code in the out stream, using the optional * metaDD bean graph. */ void generate(OutputStream out, MetaDD mdd) throws IOException; public void generateDelegator(OutputStream out, MetaDD mdd, String delegatorClassName, String delegatorPackageName) throws IOException; /** * The generator should put in an entry for every name that is * invalid to use as a property name. * * @param invalidNames is a * Map |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.