diff -r f5050f1da672 -r 04becd199f91 javaruntimes/jvmargmodifier/file/src/argsmodifier.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/javaruntimes/jvmargmodifier/file/src/argsmodifier.cpp Tue Apr 27 16:30:29 2010 +0300 @@ -0,0 +1,46 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: JvmArgs modifier appends new args and replaces modified args +* +*/ + +#include + + +#include "logger.h" + +#include "argsmodifier.h" + +namespace java // codescanner::namespace +{ +namespace runtime // codescanner::namespace +{ + +JvmArgsModifier::JvmArgsModifier() +{ +} + +JvmArgsModifier::~JvmArgsModifier() +{ +} + +void JvmArgsModifier::combineArguments(std::list& aOrig, const std::list& aNew) +{ + // for now just append the new values + std::copy(aNew.begin(),aNew.end(), std::back_inserter(aOrig)); +} + +} // end namespace runtime +} // end namespace java +