~vcs-imports/jeuclid/trunk

« back to all changes in this revision

Viewing changes to jeuclid-core/src/main/java/net/sourceforge/jeuclid/context/typewrapper/BooleanTypeWrapper.java

  • Committer: maxberger
  • Date: 2008-06-21 09:53:35 UTC
  • Revision ID: svn-v4:4240c5f0-4329-0410-b7b0-bbaa203ca8f8:trunk:795
Refactored Parameter into its own class, LayoutContext was getting too large.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2008 - 2008 JEuclid, http://jeuclid.sf.net
 
3
 *
 
4
 * Licensed under the Apache License, Version 2.0 (the "License");
 
5
 * you may not use this file except in compliance with the License.
 
6
 * You may obtain a copy of the License at
 
7
 *
 
8
 *      http://www.apache.org/licenses/LICENSE-2.0
 
9
 *
 
10
 * Unless required by applicable law or agreed to in writing, software
 
11
 * distributed under the License is distributed on an "AS IS" BASIS,
 
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
 * See the License for the specific language governing permissions and
 
14
 * limitations under the License.
 
15
 */
 
16
 
 
17
/* $Id$ */
 
18
 
 
19
package net.sourceforge.jeuclid.context.typewrapper;
 
20
 
 
21
/**
 
22
 * Converting String to Boolean and vice versa is also straightforward.
 
23
 * 
 
24
 * @version $Revision$
 
25
 */
 
26
public final class BooleanTypeWrapper extends AbstractSimpleTypeWrapper {
 
27
    /**
 
28
     * 
 
29
     */
 
30
    private static final long serialVersionUID = 1L;
 
31
 
 
32
    private static final TypeWrapper INSTANCE = new BooleanTypeWrapper();
 
33
 
 
34
    /** Simple constructor. */
 
35
    private BooleanTypeWrapper() {
 
36
        super(Boolean.class);
 
37
    }
 
38
 
 
39
    /**
 
40
     * @return the singleton instance.
 
41
     */
 
42
    public static TypeWrapper getInstance() {
 
43
        return BooleanTypeWrapper.INSTANCE;
 
44
    }
 
45
 
 
46
    /** {@inheritDoc} */
 
47
    @Override
 
48
    public Object fromString(final String value) {
 
49
        if (value == null) {
 
50
            return null;
 
51
        } else {
 
52
            return Boolean.valueOf(value);
 
53
        }
 
54
    }
 
55
}