Please take time to read the code disclaimer.

<--Go back to Kent's Projects

<--Go back to project post

package back;

import java.util.*;

/**
 *
 * @author Kent
 */
public class FileType {
  
  private String name;
  private String brush;
  private String scriptFile;
  private LinkedList extensions = new LinkedList();
  private boolean selected = false;
  
  /**
   * This is the constructor
   */
  public FileType() {
    
  }

  /**
   * @return the name
   */
  public String getName() {
    return name;
  }

  /**
   * @param name the name to set
   */
  public void setName(String name) {
    this.name = name;
  }

  /**
   * @return the selected
   */
  public boolean isSelected() {
    return selected;
  }

  /**
   * @param selected the selected to set
   */
  public void setSelected(boolean selected) {
    this.selected = selected;
  }

  /**
   * @return the extensions
   */
  public LinkedList getExtensions() {
    return extensions;
  }

  /**
   * @param extensions the extensions to set
   */
  public void setExtensions(LinkedList extensions) {
    this.extensions = extensions;
  }

  /**
   * @return the brush
   */
  public String getBrush() {
    return brush;
  }

  /**
   * @param brush the brush to set
   */
  public void setBrush(String brush) {
    this.brush = brush;
  }

  /**
   * @return the scriptFile
   */
  public String getScriptFile() {
    return scriptFile;
  }

  /**
   * @param scriptFile the scriptFile to set
   */
  public void setScriptFile(String scriptFile) {
    this.scriptFile = scriptFile;
  }
  
}