View Javadoc

1   /*	
2   	Copyright 2007-2014 Fraunhofer IGD, http://www.igd.fraunhofer.de
3   	Fraunhofer-Gesellschaft - Institute for Computer Graphics Research
4   	
5   	See the NOTICE file distributed with this work for additional 
6   	information regarding copyright ownership
7   	
8   	Licensed under the Apache License, Version 2.0 (the "License");
9   	you may not use this file except in compliance with the License.
10  	You may obtain a copy of the License at
11  	
12  	  http://www.apache.org/licenses/LICENSE-2.0
13  	
14  	Unless required by applicable law or agreed to in writing, software
15  	distributed under the License is distributed on an "AS IS" BASIS,
16  	WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  	See the License for the specific language governing permissions and
18  	limitations under the License.
19   */
20  package org.universAAL.middleware.ui.rdf;
21  
22  import org.universAAL.middleware.rdf.PropertyPath;
23  
24  /**
25   * The abstract class for all types of form controls that bear information to be
26   * presented to human users.
27   * 
28   * @author mtazari
29   */
30  public abstract class Output extends FormControl {
31      protected Output() {
32  	super();
33      }
34  
35      protected Output(String typeURI, Group parent, Label label,
36  	    PropertyPath ref, Object initialValue) {
37  	super(typeURI, parent, label, ref, null, initialValue);
38      }
39  }