Package vmcreative.injection

Source Code of vmcreative.injection.Formatting

Copyright 2009 VM Creative PTY LTD

   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.



package vmcreative.injection;

import java.text.Format;
import java.util.HashMap;

public class Formatting {
  private HashMap formatting;
 
  public Formatting() {
    this.formatting = new HashMap();
  }
 
  public void add(String field, Format formatting) {
    this.formatting.put(field, formatting);
  }
 
  public String format(String field, Object object) {
    Format format = (Format)this.formatting.get(field);
   
    if(object == null) return field + " is null and could not be formatted.";
    if(format == null) return object.toString();
   
    try {
      return format.format(object);
    } catch(Exception q) {
      return "Formatting error: " + q.getMessage();
    }
  }
 
 

}
TOP

Related Classes of vmcreative.injection.Formatting

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.