Java 类com.intellij.psi.codeStyle.arrangement.match.ArrangementEntryMatcher 实例源码
项目:intellij-ce-playground
文件:ArrangementStandardSettingsManager.java
@NotNull
public ArrangementEntryMatcher buildMatcher(@NotNull ArrangementMatchCondition condition) throws IllegalArgumentException {
ArrangementEntryMatcher matcher = ArrangementUtil.buildMatcher(condition);
if (matcher == null) {
matcher = myDelegate.buildMatcher(condition);
}
return matcher;
}
项目:tools-idea
文件:ArrangementStandardSettingsManager.java
@NotNull
public ArrangementEntryMatcher buildMatcher(@NotNull ArrangementMatchCondition condition) throws IllegalArgumentException {
ArrangementEntryMatcher matcher = ArrangementUtil.buildMatcher(condition);
if (matcher == null) {
matcher = myDelegate.buildMatcher(condition);
}
return matcher;
}
项目:consulo
文件:ArrangementStandardSettingsManager.java
@Nonnull
public ArrangementEntryMatcher buildMatcher(@Nonnull ArrangementMatchCondition condition) throws IllegalArgumentException {
ArrangementEntryMatcher matcher = ArrangementUtil.buildMatcher(condition);
if (matcher == null) {
matcher = myDelegate.buildMatcher(condition);
}
return matcher;
}
项目:intellij-ce-playground
文件:JavaRearranger.java
@NotNull
@Override
public ArrangementEntryMatcher buildMatcher(@NotNull ArrangementMatchCondition condition) throws IllegalArgumentException {
throw new IllegalArgumentException("Can't build a matcher for condition " + condition);
}
项目:intellij-ce-playground
文件:XmlRearranger.java
@NotNull
@Override
public ArrangementEntryMatcher buildMatcher(@NotNull ArrangementMatchCondition condition) throws IllegalArgumentException {
throw new IllegalArgumentException("Can't build a matcher for condition " + condition);
}
项目:tools-idea
文件:JavaRearranger.java
@NotNull
@Override
public ArrangementEntryMatcher buildMatcher(@NotNull ArrangementMatchCondition condition) throws IllegalArgumentException {
throw new IllegalArgumentException("Can't build a matcher for condition " + condition);
}
项目:tools-idea
文件:XmlRearranger.java
@NotNull
@Override
public ArrangementEntryMatcher buildMatcher(@NotNull ArrangementMatchCondition condition) throws IllegalArgumentException {
throw new IllegalArgumentException("Can't build a matcher for condition " + condition);
}
项目:consulo-xml
文件:XmlRearranger.java
@NotNull
@Override
public ArrangementEntryMatcher buildMatcher(@NotNull ArrangementMatchCondition condition) throws IllegalArgumentException
{
throw new IllegalArgumentException("Can't build a matcher for condition " + condition);
}
项目:consulo-java
文件:JavaRearranger.java
@NotNull
@Override
public ArrangementEntryMatcher buildMatcher(@NotNull ArrangementMatchCondition condition) throws IllegalArgumentException
{
throw new IllegalArgumentException("Can't build a matcher for condition " + condition);
}
项目:intellij-ce-playground
文件:ArrangementStandardSettingsAware.java
/**
* This method is assumed to be used only by third-party developers. All built-in IJ conditions are supposed
* to be implemented in terms of {@link StdArrangementTokens}.
*
* @param condition target condition
* @return a matcher for the given condition
* @throws IllegalArgumentException if current rearranger doesn't know how to build a matcher from the given condition
*/
@NotNull
ArrangementEntryMatcher buildMatcher(@NotNull ArrangementMatchCondition condition) throws IllegalArgumentException;
项目:tools-idea
文件:ArrangementStandardSettingsAware.java
/**
* This method is assumed to be used only by third-party developers. All built-in IJ conditions are supposed
* to be implemented in terms of {@link StdArrangementTokens}.
*
* @param condition target condition
* @return a matcher for the given condition
* @throws IllegalArgumentException if current rearranger doesn't know how to build a matcher from the given condition
*/
@NotNull
ArrangementEntryMatcher buildMatcher(@NotNull ArrangementMatchCondition condition) throws IllegalArgumentException;
项目:consulo
文件:ArrangementStandardSettingsAware.java
/**
* This method is assumed to be used only by third-party developers. All built-in IJ conditions are supposed
* to be implemented in terms of {@link StdArrangementTokens}.
*
* @param condition target condition
* @return a matcher for the given condition
* @throws IllegalArgumentException if current rearranger doesn't know how to build a matcher from the given condition
*/
@Nonnull
ArrangementEntryMatcher buildMatcher(@Nonnull ArrangementMatchCondition condition) throws IllegalArgumentException;