本文整理匯總了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;
}