root/trunk/AE-go_GameServer/src/com/aionemu/gameserver/model/templates/QuestTemplate.java

16832440
100
	protected Integer			combineskill;
100
	protected Integer			combineskill;
101
	@XmlAttribute(name = "combine_skillpoint")
101
	@XmlAttribute(name = "combine_skillpoint")
102
	protected Integer			combineSkillpoint;
102
	protected Integer			combineSkillpoint;
103
103
	@XmlAttribute(name = "timer")
104
	protected Boolean			timer;
105
	
104
	/**
106
	/**
105
	 * Gets the value of the collectItems property.
107
	 * Gets the value of the collectItems property.
106
	 * 
108
	 * 
...
...
633
	{
635
	{
634
		return combineSkillpoint;
636
		return combineSkillpoint;
635
	}
637
	}
638
	/**
639
	 * Gets the value of the timer property.
640
	 * 
641
	 * @return possible object is {@link Integer }
642
	 * 
643
	 */
644
	 
645
	public boolean isTimer()
646
	{
647
		if(timer == null)
648
		{
649
			return false;
650
		}
651
		else
652
		{
653
			return timer;
654
		}
655
	}	
636
}
656
}