当前位置: 首页>>代码示例>>Java>>正文


Java RadErrorComponent类代码示例

本文整理汇总了Java中com.intellij.uiDesigner.radComponents.RadErrorComponent的典型用法代码示例。如果您正苦于以下问题:Java RadErrorComponent类的具体用法?Java RadErrorComponent怎么用?Java RadErrorComponent使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


RadErrorComponent类属于com.intellij.uiDesigner.radComponents包,在下文中一共展示了RadErrorComponent类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: haveCustomComponents

import com.intellij.uiDesigner.radComponents.RadErrorComponent; //导入依赖的package包/类
private static boolean haveCustomComponents(final GuiEditor editor) {
  // quick & dirty check
  if (editor.isFormInvalid()) {
    return true;
  }
  final Ref<Boolean> result = new Ref<Boolean>();
  FormEditingUtil.iterate(editor.getRootContainer(), new FormEditingUtil.ComponentVisitor() {
    public boolean visit(final IComponent component) {
      if (component instanceof RadErrorComponent || !component.getComponentClassName().startsWith("javax.swing")) {
        result.set(Boolean.TRUE);
        return false;
      }
      return true;
    }
  });
  return !result.isNull();
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:18,代码来源:ReloadCustomComponentsAction.java

示例2: getComponentIcon

import com.intellij.uiDesigner.radComponents.RadErrorComponent; //导入依赖的package包/类
public static Icon getComponentIcon(final RadComponent component)
{
	if(!(component instanceof RadErrorComponent))
	{
		final Palette palette = Palette.getInstance(component.getProject());
		final ComponentItem item = palette.getItem(component.getComponentClassName());
		final Icon icon;
		if(item != null)
		{
			icon = item.getSmallIcon();
		}
		else
		{
			icon = UIDesignerIcons.Unknown_small;
		}
		return icon;
	}
	else
	{
		return AllIcons.General.Error;
	}
}
 
开发者ID:consulo,项目名称:consulo-ui-designer,代码行数:23,代码来源:ComponentTree.java

示例3: getFieldNames

import com.intellij.uiDesigner.radComponents.RadErrorComponent; //导入依赖的package包/类
private static String[] getFieldNames(final RadComponent component, final String currentName) {
  final ArrayList<String> result = new ArrayList<String>();
  if (currentName != null){
    result.add(currentName);
  }

  final IRootContainer root = FormEditingUtil.getRoot(component);
  final String className = root.getClassToBind();
  if (className == null) {
    return ArrayUtil.toStringArray(result);
  }

  final PsiClass aClass = FormEditingUtil.findClassToBind(component.getModule(), className);
  if (aClass == null) {
    return ArrayUtil.toStringArray(result);
  }

  final PsiField[] fields = aClass.getFields();

  for (final PsiField field : fields) {
    if (field.hasModifierProperty(PsiModifier.STATIC)) {
      continue;
    }

    final String fieldName = field.getName();

    if (Comparing.equal(currentName, fieldName)) {
      continue;
    }

    if (!FormEditingUtil.isBindingUnique(component, fieldName, root)) {
      continue;
    }

    final String componentClassName;
    if (component instanceof RadErrorComponent) {
      componentClassName = component.getComponentClassName();
    }
    else if (component instanceof RadHSpacer || component instanceof RadVSpacer) {
      componentClassName = Spacer.class.getName();
    }
    else {
      componentClassName = component.getComponentClass().getName();
    }

    final PsiType componentType;
    try {
      componentType =
        JavaPsiFacade.getInstance(component.getProject()).getElementFactory().createTypeFromText(componentClassName, null);
    }
    catch (IncorrectOperationException e) {
      continue;
    }

    final PsiType fieldType = field.getType();
    if (!fieldType.isAssignableFrom(componentType)) {
      continue;
    }

    result.add(fieldName);
  }

  String text = FormInspectionUtil.getText(component.getModule(), component);
  if (text != null) {
    String binding = BindingProperty.suggestBindingFromText(component, text);
    if (binding != null && !result.contains(binding)) {
      result.add(binding);        
    }
  }

  final String[] names = ArrayUtil.toStringArray(result);
  Arrays.sort(names);
  return names;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:75,代码来源:BindingEditor.java


注:本文中的com.intellij.uiDesigner.radComponents.RadErrorComponent类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。