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

Quick Search    Search Deep

Source code: com/flexstor/common/importprocessor/ImportExcludeI.java


1   /*
2    * ImportExcludeI.java
3    *
4    * Copyright $Date: 2003/08/11 02:22:37 $ FLEXSTOR.net Inc.
5    *
6    * This work is licensed for use and distribution under license terms found at
7    * http://www.flexstor.org/license.html
8    *
9    */
10  
11  package com.flexstor.common.importprocessor;
12  
13  /**
14  *
15  *
16  */
17  public interface ImportExcludeI
18    {
19    // This array should contain any fixed characters or strings that, if contained appropriately in
20    // a file name will always be excluded.  Use the format <command>=<string-to-find> where "command" is
21    // "STARTSWITH", "CONTAINS", or "ENDSWITH" and "string-to-find" is a char or string specified as a sequence
22    // of chars or a sequence of hexadecimal ASCII numeric digits (2 per byte) preceeded by a single back-slash. 
23    // A single back-slash which is to be part of the string representation should be specified with 2 back-slashes.
24    
25    public static final String[] aFixedSpecs = {"CONTAINS=`",
26                                                "CONTAINS='",
27                                                "CONTAINS=\"",
28                                                "CONTAINS=\\",    // SINGLE BACK SLASH
29                                                "CONTAINS=^",
30                                                "ENDSWITH= ",     // SPACE
31                                                "STARTSWITH= "};  // SPACE
32  
33    } // ImportExcludeI