Package org.eclipse.xtext.xdoc.xdoc

Examples of org.eclipse.xtext.xdoc.xdoc.Part


   * <!-- end-user-doc -->
   * @generated
   */
  public void setPart(Part newPart)
  {
    Part oldPart = part;
    part = newPart;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, XdocPackage.PART_REF__PART, oldPart, part));
  }
View Full Code Here


  }
 
  protected CharSequence _genLabel(final PartRef part) {
    StringConcatenation _builder = new StringConcatenation();
    {
      Part _part = part.getPart();
      String _name = _part.getName();
      boolean _notEquals = (!Objects.equal(_name, null));
      if (_notEquals) {
        _builder.append("\\label{");
        Part _part_1 = part.getPart();
        String _name_1 = _part_1.getName();
        String _string = null;
        if (_name_1!=null) {
          _string=_name_1.toString();
        }
        _builder.append(_string, "");
View Full Code Here

    String _switchResult = null;
    boolean _matched = false;
    if (!_matched) {
      if (identifiable instanceof PartRef) {
        _matched=true;
        Part _part = ((PartRef)identifiable).getPart();
        _switchResult = this.getFullURL(_part);
      }
    }
    if (!_matched) {
      if (identifiable instanceof ChapterRef) {
View Full Code Here

    String _switchResult = null;
    boolean _matched = false;
    if (!_matched) {
      if (identifiable instanceof PartRef) {
        _matched=true;
        Part _part = ((PartRef)identifiable).getPart();
        _switchResult = this.getResourceURL(_part);
      }
    }
    if (!_matched) {
      if (identifiable instanceof ChapterRef) {
View Full Code Here

    URI _switchResult = null;
    boolean _matched = false;
    if (!_matched) {
      if (it instanceof PartRef) {
        _matched=true;
        Part _part = ((PartRef)it).getPart();
        _switchResult = this.getTargetURI(_part);
      }
    }
    if (!_matched) {
      if (it instanceof ChapterRef) {
View Full Code Here

    };
    IterableExtensions.<Chapter>forEach(_chapters, _function);
  }
 
  protected void _populateFileMap(final PartRef it) {
    Part _part = it.getPart();
    this.populateFileMap(_part);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.xtext.xdoc.xdoc.Part

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.