~ubuntu-branches/ubuntu/vivid/herold/vivid

« back to all changes in this revision

Viewing changes to java/org/dbdoclet/trafo/param/BooleanParam.java

  • Committer: Package Import Robot
  • Author(s): Mathieu Malaterre
  • Date: 2012-09-20 10:00:14 UTC
  • Revision ID: package-import@ubuntu.com-20120920100014-5pcwbw2err6on8yg
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.dbdoclet.trafo.param;
 
2
 
 
3
/**
 
4
 * Parameter mit boolschem Wert.
 
5
 * 
 
6
 * @author Michael Fuchs
 
7
 */
 
8
public class BooleanParam extends Param<Boolean> {
 
9
 
 
10
        public BooleanParam(String name, Boolean value) {
 
11
                super(name, value);
 
12
        }
 
13
 
 
14
}