/* * Software Name : ATK * * Copyright (C) 2007 - 2012 France Télécom * * 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. * * ------------------------------------------------------------------ * File Name : HopperCampaign.java * * Created : 23/05/2007 * Author(s) : Aurore PENAULT */ package com.orange.atk.atkUI.anaHopper; import org.dom4j.Element; import com.orange.atk.atkUI.corecli.Campaign; import com.orange.atk.atkUI.corecli.utils.XMLParser; /** * * @author Aurore PENAULT * @since JDK5.0 */ @SuppressWarnings("serial") public class HopperCampaign extends Campaign { public Campaign readCampaign(XMLParser parser) { Campaign camp = new HopperCampaign(); Element root = parser.getRoot(); Element[] flashStepList = parser.getElements(root, HopperStep.TYPE); for (int i=0; i<flashStepList.length; i++) { String flashFilePath = flashStepList[i].attributeValue("file"); HopperStep step = new HopperStep(flashFilePath); String stepName = flashStepList[i].attributeValue("name"); step.readfromelement(flashStepList[i],step,flashFilePath); if (flashStepList[i].attributeValue(HopperStep.PARAM_TIME)!=null){ step.getParam().put(HopperStep.PARAM_TIME, flashStepList[i].attributeValue(HopperStep.PARAM_TIME)); } if (flashStepList[i].attributeValue(HopperStep.PARAM_NBEVENTS)!=null){ step.getParam().put(HopperStep.PARAM_NBEVENTS, flashStepList[i].attributeValue(HopperStep.PARAM_NBEVENTS)); } if (flashStepList[i].attributeValue(HopperStep.PARAM_THROTTLE)!=null){ step.getParam().put(HopperStep.PARAM_THROTTLE, flashStepList[i].attributeValue(HopperStep.PARAM_THROTTLE)); } // Output file : re-uses the 'name' attribute, after // testing its validity initOutputFile(step, stepName, i); // add to campaign camp.add(step); } return camp; } }