Examples of IndexObjectDB


Examples of com.antlersoft.odb.IndexObjectDB

  @Override
    protected IDBSource internalOpen(File location) throws Exception
    {
        createCount=0;
        _session=new IndexObjectDB( new DirectoryAllocator( location,
            new CFactory(), isUseMapped()));
        _session.redefineIndex( DBArgument.ARGUMENT_TYPE_INDEX, DBArgument.class,
            new DBArgument.ArgumentTypeKeyGenerator(), false, false, TYPEKEY_INDEX_PROPS);
        _session.redefineIndex( DBCall.CALL_TARGET, DBCall.class,
            new DBReference.ReferenceTargetGenerator(), false, false, TYPEKEY_INDEX_PROPS);
View Full Code Here

Examples of com.antlersoft.odb.IndexObjectDB

  private SourceFile m_current_file;
  private int m_line;

  public CxxIndexObjectDB( String directory_name)
  {
    m_session=new IndexObjectDB( new DirectoryAllocator(
          new File( directory_name), new CFactory()));
    try
    {
      m_session.defineIndex( TranslationUnit.TRANSLATION_UNIT_NAME_INDEX,
                   TranslationUnit.class,
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.