From: Martin S. <sch...@us...> - 2005-05-11 15:46:40
|
Update of /cvsroot/magicmap/magicmapserver/src/net/sf/magicmap/server/dto In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14454/src/net/sf/magicmap/server/dto Added Files: StringReplacementDTO.java Log Message: + wsdl2java via ant-task + string[] replaced +axis 1.2 (final) --- NEW FILE: StringReplacementDTO.java --- package net.sf.magicmap.server.dto; /** * author schweige * date 03.12.2004 * copyright (C) 2004 Martin Schweigert, Tobias Hübner * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * * Diese Klasse existiert nur, weil die .Net Soap-Implementierung keine String-Arrays, * wohl aber Arrays von anderen Typen behandeln kann... * */ public class StringReplacementDTO { protected String wrappedString; public StringReplacementDTO() { } /** * @return Returns the wrappedString. */ public String getWrappedString(){ return this.wrappedString; } /** * @param wrappedString The wrappedString to set. */ public void setWrappedString(String wrappedString){ this.wrappedString = wrappedString; } } |