org.fujion.codemirror.CodeMirror Maven / Gradle / Ivy
/*
* #%L
* fujion
* %%
* Copyright (C) 2008 - 2017 Regenstrief Institute, Inc.
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* #L%
*/
package org.fujion.codemirror;
import org.fujion.annotation.Component;
import org.fujion.annotation.Component.PropertyGetter;
import org.fujion.annotation.Component.PropertySetter;
import org.fujion.component.BaseInputComponent;
/**
* Fujion wrapper for CodeMirror JavaScript editor.
*/
@Component(tag = "codemirror", widgetModule = "fujion-codemirror", widgetClass = "CodeMirror", parentTag = "*", description = "Fujion wrapper for CodeMirror JavaScript editor.")
public class CodeMirror extends BaseInputComponent {
private String mode;
private boolean lineNumbers;
private String placeholder;
private boolean readonly;
/**
* Invokes the CodeMirror format method.
*/
public void format() {
invoke("format");
}
/**
* Returns true if the editor is set to read-only.
*
* @return True if read-only.
*/
@PropertyGetter(value = "readonly", description = "True if read-only.")
public boolean isReadonly() {
return readonly;
}
/**
* Set the read-only state of the editor.
*
* @param readonly The read-only state.
*/
@PropertySetter(value = "readonly", defaultValue = "false", description = "True if read-only.")
public void setReadonly(boolean readonly) {
propertyChange("readonly", this.readonly, this.readonly = readonly, true);
}
/**
* Returns the placeholder message that is displayed when the editor is empty.
*
* @return The placeholder message that is displayed when the editor is empty.
*/
@PropertyGetter(value = "placeholder", description = "The placeholder message that is displayed when the editor is empty.")
public String getPlaceholder() {
return placeholder;
}
/**
* Sets the placeholder value.
*
* @param placeholder The placeholder value.
*/
@PropertySetter(value = "placeholder", description = "The placeholder message that is displayed when the editor is empty.")
public void setPlaceholder(String placeholder) {
propertyChange("placeholder", this.placeholder, this.placeholder = nullify(placeholder), true);
}
/**
* Returns the CodeMirror mode parameter.
*
* @return The CodeMirror mode parameter.
*/
@PropertyGetter(value = "mode", description = "The CodeMirror mode parameter.")
public String getMode() {
return mode;
}
/**
* Sets the CodeMirror mode parameter.
*
* @param mode The CodeMirror mode parameter.
*/
@PropertySetter(value = "mode", description = "The CodeMirror mode parameter.")
public void setMode(String mode) {
propertyChange("mode", this.mode, this.mode = trimify(mode), true);
}
/**
* Returns the CodeMirror lineNumbers parameter.
*
* @return The CodeMirror lineNumbers parameter.
*/
@PropertyGetter(value = "lineNumbers", description = "The CodeMirror lineNumbers parameter.")
public boolean getLineNumbers() {
return lineNumbers;
}
/**
* Sets the CodeMirror lineNumbers parameter.
*
* @param lineNumbers The CodeMirror lineNumbers parameter.
*/
@PropertySetter(value = "lineNumbers", description = "The CodeMirror lineNumbers parameter.")
public void setLineNumbers(boolean lineNumbers) {
propertyChange("lineNumbers", this.lineNumbers, this.lineNumbers = lineNumbers, true);
}
@Override
protected String _toValue(String value) {
return value;
}
@Override
protected String _toString(String value) {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy