Package at.bestsolution.efxclipse.tooling.rrobot.model.bundle

Examples of at.bestsolution.efxclipse.tooling.rrobot.model.bundle.LinkedString


      }
    }
    _builder.append(">");
    _builder.newLineIfNotEmpty();
    {
      LinkedString _description = file.getDescription();
      boolean _notEquals_2 = (!Objects.equal(_description, null));
      if (_notEquals_2) {
        _builder.append("\t\t");
        _builder.append("<description ");
        {
          LinkedString _description_1 = file.getDescription();
          String _weburl = _description_1.getWeburl();
          boolean _notEquals_3 = (!Objects.equal(_weburl, null));
          if (_notEquals_3) {
            _builder.append("url=\"");
            LinkedString _description_2 = file.getDescription();
            String _weburl_1 = _description_2.getWeburl();
            _builder.append(_weburl_1, "    ");
            _builder.append("\"");
          } else {
            _builder.append("url=\"http://www.example.com/description\"");
          }
        }
        _builder.append(">");
        _builder.newLineIfNotEmpty();
        _builder.append("\t\t");
        _builder.append("\t");
        LinkedString _description_3 = file.getDescription();
        String _value = _description_3.getValue();
        _builder.append(_value, "      ");
        _builder.newLineIfNotEmpty();
        _builder.append("\t\t");
        _builder.append("</description>");
        _builder.newLine();
      } else {
        _builder.append("\t\t");
        _builder.append("<description url=\"http://www.example.com/description\">");
        _builder.newLine();
        _builder.append("\t\t");
        _builder.append("\t");
        _builder.append("[Enter Feature Description here.]");
        _builder.newLine();
        _builder.append("\t\t");
        _builder.append("</description>");
        _builder.newLine();
      }
    }
    _builder.newLine();
    {
      LinkedString _copyright = file.getCopyright();
      boolean _notEquals_4 = (!Objects.equal(_copyright, null));
      if (_notEquals_4) {
        _builder.append("\t\t");
        _builder.append("<copyright ");
        {
          LinkedString _copyright_1 = file.getCopyright();
          boolean _notEquals_5 = (!Objects.equal(_copyright_1, null));
          if (_notEquals_5) {
            _builder.append("url=\"");
            LinkedString _copyright_2 = file.getCopyright();
            String _weburl_2 = _copyright_2.getWeburl();
            _builder.append(_weburl_2, "    ");
            _builder.append("\"");
          } else {
            _builder.append("url=\"http://www.example.com/copyright\"");
          }
        }
        _builder.append(">");
        _builder.newLineIfNotEmpty();
        _builder.append("\t\t");
        _builder.append("\t");
        LinkedString _copyright_3 = file.getCopyright();
        String _value_1 = _copyright_3.getValue();
        _builder.append(_value_1, "      ");
        _builder.newLineIfNotEmpty();
        _builder.append("\t\t");
        _builder.append("</copyright>");
        _builder.newLine();
      } else {
        _builder.append("\t\t");
        _builder.append("<copyright url=\"http://www.example.com/copyright\">");
        _builder.newLine();
        _builder.append("\t\t");
        _builder.append("\t");
        _builder.append("[Enter Copyright Description here.]");
        _builder.newLine();
        _builder.append("\t\t");
        _builder.append("</copyright>");
        _builder.newLine();
      }
    }
    _builder.newLine();
    {
      LinkedString _license = file.getLicense();
      boolean _notEquals_6 = (!Objects.equal(_license, null));
      if (_notEquals_6) {
        _builder.append("\t\t");
        _builder.append("<license ");
        {
          LinkedString _license_1 = file.getLicense();
          boolean _notEquals_7 = (!Objects.equal(_license_1, null));
          if (_notEquals_7) {
            _builder.append("url=\"");
            LinkedString _license_2 = file.getLicense();
            String _weburl_3 = _license_2.getWeburl();
            _builder.append(_weburl_3, "    ");
            _builder.append("\"");
          } else {
            _builder.append("url=\"http://www.example.com/license\"");
          }
        }
        _builder.append(">");
        _builder.newLineIfNotEmpty();
        _builder.append("\t\t");
        _builder.append("\t");
        LinkedString _license_3 = file.getLicense();
        String _value_2 = _license_3.getValue();
        _builder.append(_value_2, "      ");
        _builder.newLineIfNotEmpty();
        _builder.append("\t\t");
        _builder.append("</license>");
        _builder.newLine();
View Full Code Here


   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetDescription(LinkedString newDescription, NotificationChain msgs) {
    LinkedString oldDescription = description;
    description = newDescription;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BundlePackage.FEATURE_FILE__DESCRIPTION, oldDescription, newDescription);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetCopyright(LinkedString newCopyright, NotificationChain msgs) {
    LinkedString oldCopyright = copyright;
    copyright = newCopyright;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BundlePackage.FEATURE_FILE__COPYRIGHT, oldCopyright, newCopyright);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetLicense(LinkedString newLicense, NotificationChain msgs) {
    LinkedString oldLicense = license;
    license = newLicense;
    if (eNotificationRequired()) {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, BundlePackage.FEATURE_FILE__LICENSE, oldLicense, newLicense);
      if (msgs == null) msgs = notification; else msgs.add(notification);
    }
View Full Code Here

TOP

Related Classes of at.bestsolution.efxclipse.tooling.rrobot.model.bundle.LinkedString

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.