RewriteEngine on
RewriteCond %{HTTP_HOST} !^se\.solovyev\.org$
RewriteRule ^ http://se.solovyev.org%{REQUEST_URI} [R=301,L]
<EditTextExtension
a:editable="false"
a:singleLine="false"
a:scrollbars="vertical"/>
@Override
public boolean onCheckIsTextEditor() {
if ( Build.VERSION.SDK_INT >= 11 ) {
return true;
} else {
return false;
}
}
@Override
public boolean onCheckIsTextEditor() {
return mInputType != EditorInfo.TYPE_NULL;
}
InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_MULTI_LINE
interface Command {
Result run(WebDriver webDriver, State state, Map<String, String> params) throw IllegalArgumentException;
}
interface CommandsService {
@Nullable
Command getCommand(@NotNull String commandName);
Result runCommand(@NotNull String commandName, // PARAMS);
void registerCommand(@NotNull String commandName, @NotNull Command command);
}
public enum DefaultCommand implements Command{
open{
Result run(WebDriver webDriver, State state, Map<String, String> params) throw IllegalArgumentException {
// do logic
}
},
type {
Result run(WebDriver webDriver, State state, Map<String, String> params) throw IllegalArgumentException {
// do logic
}
};
}