EnumFormType.java 1.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/* 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.
 */

T
tombaeyens 已提交
14
package org.activiti.engine.impl.form;
15

T
tombaeyens 已提交
16 17
import java.util.List;
import java.util.Map;
18 19 20 21 22


/**
 * @author Tom Baeyens
 */
T
tombaeyens 已提交
23
public class EnumFormType extends AbstractFormType {
24

T
tombaeyens 已提交
25 26 27 28 29 30 31 32 33
  protected Map<String, String> values;

  public EnumFormType(Map<String, String> values) {
    this.values = values;
  }

  public String getName() {
    return "enum";
  }
T
tombaeyens 已提交
34
  
T
tombaeyens 已提交
35 36 37 38 39 40 41 42 43 44 45 46
  @Override
  public Object getInformation(String key) {
    if (key.equals("values")) {
      return values;
    }
    return null;
  }

  @Override
  public Object convertFormValueToModelValue(String propertyValue) {
    // TODO
    return null;
T
tombaeyens 已提交
47 48
  }

T
tombaeyens 已提交
49 50 51 52
  @Override
  public String convertModelValueToFormValue(Object modelValue) {
    // TODO
    return null;
T
tombaeyens 已提交
53
  }
T
tombaeyens 已提交
54

55
}