Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/mitre/cvw/CVWFormFolder.java


1   /*
2    * Copyright (c) 1996-2000. The MITRE Corporation (http://www.mitre.org/).
3    * All rights reserved.
4    * CVW comes with ABSOLUTELY NO WARRANTY. See license for details.
5    */
6   
7   package org.mitre.cvw;
8   
9   
10  /**
11   * This represents the Pending, Outbox and Archive objects on the CVWServer
12   * @version 
13   * @author Deb Ercolini
14   */
15  class CVWFormFolder extends CVWContainer {
16  
17    CVWFormFolder() {
18       super(CVWObject.FORMFOLDER);
19      }
20  
21  /**
22   * These types of objects never have shortcuts
23   * @return <code>false</code>
24   */
25    public boolean isShortcut() {
26      return false;
27     }
28  
29  }
30