Examples of Wrap


Examples of com.intellij.formatting.Wrap

        }

        if (psiElement instanceof BasePsiElement) {
            BasePsiElement basePsiElement = (BasePsiElement) psiElement;

            Wrap wrap = getWrapAttribute();
            if (wrap != null) {
                return wrap;
            }

/*            FormattingAttributes attributes = getFormattingAttributes();
View Full Code Here

Examples of com.intellij.formatting.Wrap

        spacingAfter = CommonUtil.nvln(spacingAfter, defaults.spacingAfter);
    }
   
    public FormattingAttributes getAttributes() {
        if (attributes == null) {
            Wrap wrap = this.wrap == null ? null : this.wrap.getValue();
            Indent indent = this.indent == null ? null : this.indent.getValue();
            Spacing spacingBefore = this.spacingBefore == null ? null : this.spacingBefore.getValue();
            Spacing spacingAfter = this.spacingAfter == null ? null : this.spacingAfter.getValue();
            attributes = new FormattingAttributes(wrap, indent, spacingBefore, spacingAfter);
        }
View Full Code Here

Examples of org.jemmy.control.Wrap

            if (owner.getTreeView().isShowRoot()
                && criteria.length > 0
                && !root.isExpanded()) {
                Root.ROOT.getThemeFactory().treeItem(new TreeNodeWrap(root, owner, parent.getEditor())).expand();
            }
            Wrap res = new TreeItemWrap(itemType, select(root, criteria), owner,
                    parent.getEditor());
            res.mouse().click();
            return res;
        }
View Full Code Here

Examples of org.osm2world.core.target.common.TextureData.Wrap

              double width = config.getDouble(widthKey, 1);
              double height = config.getDouble(heightKey, 1);
              boolean colorable = config.getBoolean(colorableKey, false);
             
              String wrapString = config.getString(wrapKey);
              Wrap wrap = Wrap.REPEAT;
              if ("clamp_to_border".equalsIgnoreCase(wrapString)) {
                wrap = Wrap.CLAMP_TO_BORDER;
              } else if ("clamp".equalsIgnoreCase(wrapString)) {
                wrap = Wrap.CLAMP;
              }
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.