當前位置: 首頁>>代碼示例>>Java>>正文


Java RadGridLayoutManager類代碼示例

本文整理匯總了Java中com.intellij.uiDesigner.radComponents.RadGridLayoutManager的典型用法代碼示例。如果您正苦於以下問題:Java RadGridLayoutManager類的具體用法?Java RadGridLayoutManager怎麽用?Java RadGridLayoutManager使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


RadGridLayoutManager類屬於com.intellij.uiDesigner.radComponents包,在下文中一共展示了RadGridLayoutManager類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: appliesTo

import com.intellij.uiDesigner.radComponents.RadGridLayoutManager; //導入依賴的package包/類
@Override
public boolean appliesTo(final RadComponent component) {
  @NonNls String name = getName();
  //noinspection SimplifiableIfStatement
  if (name.equals(SwingProperties.PREFERRED_SIZE) ||
      name.equals(SwingProperties.MINIMUM_SIZE) ||
      name.equals(SwingProperties.MAXIMUM_SIZE)) {
    // our own properties must be used instead
    final RadContainer parent = component.getParent();
    return parent != null && !(parent.getLayoutManager() instanceof RadGridLayoutManager);
  }

  // check if property is available in the JDK used by the module containing the component
  final PsiManager psiManager = PsiManager.getInstance(component.getProject());
  final GlobalSearchScope scope = component.getModule().getModuleWithDependenciesAndLibrariesScope(true);
  PsiClass componentClass = JavaPsiFacade.getInstance(psiManager.getProject()).findClass(component.getComponentClassName(), scope);
  if (componentClass == null) return true;
  final PsiMethod[] psiMethods = componentClass.findMethodsByName(myReadMethod.getName(), true);
  for(PsiMethod method: psiMethods) {
    if (!method.hasModifierProperty(PsiModifier.STATIC) &&
        method.getParameterList().getParametersCount() == 0) {
      return true;
    }
  }
  return false;
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:27,代碼來源:IntrospectedProperty.java


注:本文中的com.intellij.uiDesigner.radComponents.RadGridLayoutManager類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。