01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17:
18: package org.apache.commons.betwixt.strategy;
19:
20: /**
21: * A beanmapper which converts a type to start with an uppercase.
22: * So eg elementName should return ElementName
23: *
24: * @author <a href="mailto:martin@mvdb.net">Martin van den Bemt</a>
25: * @version $Id: CapitalizeNameMapper.java 471234 2006-11-04 17:28:08Z rdonkin $
26: */
27: public class CapitalizeNameMapper implements NameMapper {
28:
29: /**
30: * Capitalize first letter of type name.
31: *
32: * @param typeName the string to convert
33: * @return <code>typeName</code> after first letter has been converted to upper case
34: */
35: public String mapTypeToElementName(String typeName) {
36: if (typeName == null || typeName.length() == 0) {
37: return typeName;
38: }
39: StringBuffer sb = new StringBuffer(typeName);
40: char upperChar = Character.toUpperCase(typeName.charAt(0));
41: sb.delete(0, 1);
42: sb.insert(0, upperChar);
43: return sb.toString();
44: }
45:
46: /**
47: * Outputs a brief description.
48: * @since 0.8
49: */
50: public String toString() {
51: return "Capitalize Type Name Mapper";
52: }
53: }
|