Package net.sourceforge.cruisecontrol.gendoc

Examples of net.sourceforge.cruisecontrol.gendoc.ChildInfo


    // allowing us to make sure that the right plugin info gets associated with each
    // project.
    AttributeInfo[] noAttrs = {};
    ChildInfo[] noChildren = {};
    PluginInfo rootInfo = new PluginInfo(null, "cruisecontrol", "", "", noAttrs, new ChildInfo[] {
        new ChildInfo("", "", 0, -1, "", new PluginInfo[] {
          new PluginInfo(null, "project", "", "", noAttrs, new ChildInfo[] {
            new ChildInfo("", "", 0, -1, "", new PluginInfo[] {
              new PluginInfo(null, "schedule", "root version of schedule", "", noAttrs, noChildren)
            })})})});
    PluginInfo proj1Info = new PluginInfo(null, "cruisecontrol", "", "", noAttrs, new ChildInfo[] {
        new ChildInfo("", "", 0, -1, "", new PluginInfo[] {
          new PluginInfo(null, "project", "", "", noAttrs, new ChildInfo[] {
            new ChildInfo("", "", 0, -1, "", new PluginInfo[] {
              schedule1Info = new PluginInfo(null, "schedule", "proj1 version of schedule", "", new AttributeInfo[] {
                new AttributeInfo("interval", AttributeType.NUMBER, "", "", "", new int[] {0, 1}, "")
              }, noChildren)
            })})})});
    PluginInfo proj2Info = new PluginInfo(null, "cruisecontrol", "", "", noAttrs, new ChildInfo[] {
        new ChildInfo("", "", 0, -1, "", new PluginInfo[] {
          new PluginInfo(null, "project", "", "", noAttrs, new ChildInfo[] {
            new ChildInfo("", "", 0, -1, "", new PluginInfo[] {
              schedule2Info = new PluginInfo(null, "schedule", "proj2 version of schedule", "", new AttributeInfo[] {
                new AttributeInfo("interval", AttributeType.NUMBER, "", "", "", new int[] {0, 1}, "")
              }, noChildren)
            })})})});
   
View Full Code Here

TOP

Related Classes of net.sourceforge.cruisecontrol.gendoc.ChildInfo

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.