ExampleGroup.java :  » Swing-Library » DJ-Project-0.9.9 » chrriis » dj » nativeswing » swtimpl » demo » Java Open Source

Java Open Source » Swing Library » DJ Project 0.9.9 
DJ Project 0.9.9 » chrriis » dj » nativeswing » swtimpl » demo » ExampleGroup.java
/*
 * Christopher Deckers (chrriis@nextencia.net)
 * http://www.nextencia.net
 *
 * See the file "readme.txt" for information on usage and redistribution of
 * this file, and for a DISCLAIMER OF ALL WARRANTIES.
 */
package chrriis.dj.nativeswing.swtimpl.demo;

/**
 * @author Christopher Deckers
 */
public class ExampleGroup {

  protected String name;
  protected Example[] examples;

  public ExampleGroup(String name, Example[] examples) {
    this.name = name;
    this.examples = examples;
  }

  public String getName() {
    return name;
  }

  public Example[] getExamples() {
    return examples;
  }

  @Override
  public String toString() {
    return name;
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.