blob: a60a87a1bcdbefb2741a742d51ea50cfbcfd3060 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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.
*/
package org.odftoolkit.simple.form;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.odftoolkit.odfdom.dom.element.form.FormFormattedTextElement;
import org.odftoolkit.odfdom.pkg.OdfFileDom;
import org.odftoolkit.simple.Document;
public class PatternField extends Field {
PatternField(FormFormattedTextElement element) {
super(element);
}
/**
* Get an instance of pattern field by an instance of FormFormattedTextElement,
* while searching the document content to make a bind with the DrawControl
* which already reference to this pattern field.
*
* @param element
* - an instance of FormFormattedTextElement
* @return an instance of pattern field
*/
public static PatternField getInstanceOf(FormFormattedTextElement element) {
PatternField field = new PatternField(element);
try {
field.loadDrawControl(((Document) ((OdfFileDom) element
.getOwnerDocument()).getDocument()).getContentRoot());
} catch (Exception e) {
Logger.getLogger(PatternField.class.getName()).log(Level.WARNING,
"Cannot load the drawing shape of this field.");
}
return field;
}
public void setEditMask(String mask) {
this.setFormProperty(OOFormProvider.FORM_PROPERTY_NAME_EDITMASK,
"string", mask, null, null, null, null, null);
}
public void setLiteralMask(String mask) {
this.setFormProperty(OOFormProvider.FORM_PROPERTY_NAME_LITERALMASK,
"string", mask, null, null, null, null, null);
}
}