//===============================================================================
// Copyright (c) 2010 Adam C Jones
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//===============================================================================
package com.onesadjam.yagrac.xml;
import java.util.ArrayList;
import java.util.List;
import org.xml.sax.Attributes;
import android.sax.Element;
import android.sax.StartElementListener;
public class Shelves
{
private int _Start;
private int _End;
private int _Total;
private List<UserShelf> _UserShelves = new ArrayList<UserShelf>();
public void clear()
{
this.set_Start(0);
this.set_End(0);
this.set_Total(0);
_UserShelves.clear();
}
public Shelves copy()
{
Shelves shelvesCopy = new Shelves();
shelvesCopy.set_Start(this.get_Start());
shelvesCopy.set_End(this.get_End());
shelvesCopy.set_Total(this.get_Total());
List<UserShelf> userShelfList = new ArrayList<UserShelf>();
for (int i = 0; i < _UserShelves.size(); i++ )
{
userShelfList.add(_UserShelves.get(i).copy());
}
shelvesCopy.set_UserShelves(userShelfList);
return shelvesCopy;
}
public static Shelves appendSingletonListener(Element parentElement, int depth)
{
final Shelves shelves = new Shelves();
final Element shelvesElement = parentElement.getChild("shelves");
shelvesElement.setStartElementListener(new StartElementListener()
{
@Override
public void start(Attributes attributes)
{
shelves.set_Start(Integer.parseInt(attributes.getValue("start")));
shelves.set_End(Integer.parseInt(attributes.getValue("end")));
shelves.set_Total(Integer.parseInt(attributes.getValue("total")));
}
});
shelves.set_UserShelves(UserShelf.appendArrayListener(shelvesElement, depth + 1));
return shelves;
}
public int get_Start()
{
return _Start;
}
public void set_Start(int _Start)
{
this._Start = _Start;
}
public int get_End()
{
return _End;
}
public void set_End(int _End)
{
this._End = _End;
}
public int get_Total()
{
return _Total;
}
public void set_Total(int _Total)
{
this._Total = _Total;
}
public List<UserShelf> get_UserShelves()
{
return _UserShelves;
}
public void set_UserShelves(List<UserShelf> _UserShelves)
{
this._UserShelves = _UserShelves;
}
}
|