00001 /* 00002 * XINSFunctionRecord.java 00003 * 00004 * Created on November 17, 2008, 2:34 PM 00005 * 00006 * Copyright 2009 Online Nederland Breedband B.V. 00007 * See the COPYRIGHT file for redistribution and use restrictions. 00008 * Authors: Guillermo Christen <guillermo.christen@is.online.nl> 00009 */ 00010 package dochelper.xins; 00011 00012 import java.io.File; 00013 import dochelper.FileRecord; 00014 00022 public class XINSFunctionRecord extends FileRecord { 00023 00024 private final String replace = "Impl"; 00025 00030 public XINSFunctionRecord(File file, String name) { 00031 super(file, name); 00032 params.put("functionname", file.getName().substring(0, file.getName().lastIndexOf(".")).replaceAll(replace, "")); 00033 } 00034 00035 }