Examples of MkbItem


Examples of beans.directory.mkb10.MkbItem

        if (!mkbCode.matches("[A-Z_0-9_\\._\\-\\*]+")) {
            throwFormatError("mkbCode!  " + " ---> " + line);
        }
        String mkbStr = line.substring(mkbPos + 1, line.length()).trim();
        //System.out.println(mkbCode + (char)9 + mkbStr);
        return new MkbItem(mkbStr, mkbCode, null, null);
  }
View Full Code Here

Examples of beans.directory.mkb10.MkbItem

    catch (NumberFormatException ex){
      throw new ClipsException("Некорректный фомат файла! Id не число! \"" + line + "\"", ex);
    }
    String        text = line.substring(mkbIdx + 1, pIDidx).trim();
    text = text.substring(0, 1) + text.substring(1).toLowerCase();
    return new MkbItem(text, mkbID, id, parent);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.