- /*
- * Copyright 1999,2004 The Apache Software Foundation.
- *
- * 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.
- */
- /*
- * Created on 2007-2-16
- *
- */
- package peaklau.eaglefund;
- import nanoxml.XMLElement;
- import nanoxml.XMLParseException;
- /**
- * Parse index XML class<br>
- * <br>
- * @author peaklau <br>
- * email:<A HREF="mailto:peaklau@hotmail.com">peaklau@hotmail.com</A> <br>
- * <a href="http://www.peaklau.com/fund/english/">HomePage</a>
- * @version $Revision: 1.1 $ $Date: 2007/05/09 16:07:04 $
- */
- public class StockImageData extends XMLElement {
- private int []values;
- private static int count=0;
- public StockImageData(int []values){
- this.values=values;
- }
- public void init(){
- count=values.length-1;
- }
- public XMLElement createInstance(){
- //System.out.println("createInstance");
- return new StockImageData(values);
- }
- public void content(String value)throws XMLParseException{
- //System.out.println("content "+value);
- if(count>=0){
- values[count--]=Integer.parseInt(value);
- }
- }
- }