Package org.dbwiki.data.resource

Examples of org.dbwiki.data.resource.SchemaNodeIdentifier


  /*
   * Public Methods
   */
  public SchemaNodeIdentifier identifier() {
    return new SchemaNodeIdentifier(_id);
  }
View Full Code Here


  public ResourceIdentifier getNodeIdentifierForURL(RequestURL url) throws org.dbwiki.exception.WikiException {
    return new NodeIdentifier(url);
  }

  public ResourceIdentifier getSchemaNodeIdentifierForURL(RequestURL url) throws org.dbwiki.exception.WikiException {
    return new SchemaNodeIdentifier(url);
  }
View Full Code Here

  public SchemaNodePrinter(WikiSchemaRequest  request, DatabaseLayouter layouter) throws org.dbwiki.exception.WikiException {
    _databaseIdentifier = request.wri().databaseIdentifier();
    _layouter = layouter;
    _schemaNode = request.schema();
    if(_schemaNode == null) {
      _schemaNode = request.wiki().database().getSchemaNode(new SchemaNodeIdentifier(0));
    }
    _timestampPrinter = new TimestampPrinter(request.wiki().database().versionIndex());
    _versionParameter = RequestParameter.versionParameter(request.parameters().get(RequestParameter.ParameterVersion));
  }
View Full Code Here

TOP

Related Classes of org.dbwiki.data.resource.SchemaNodeIdentifier

Copyright © 2018 www.massapicom. 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.