001 /*
002 * Apache License
003 * Version 2.0, January 2004
004 * http://www.apache.org/licenses/
005 *
006 * Copyright 2009 by chenillekit.org
007 *
008 * Licensed under the Apache License, Version 2.0 (the "License");
009 * you may not use this file except in compliance with the License.
010 * You may obtain a copy of the License at
011 *
012 * http://www.apache.org/licenses/LICENSE-2.0
013 */
014
015 package org.chenillekit.tapestry.core.models;
016
017 import java.util.List;
018
019 import org.apache.tapestry5.OptionGroupModel;
020 import org.apache.tapestry5.OptionModel;
021 import org.apache.tapestry5.util.AbstractSelectModel;
022
023 /**
024 * @author <a href="mailto:shomburg@depot120.dpd.de">S.Homburg</a>
025 * @version $Id: DaySelectModel.java 471 2009-05-09 09:28:38Z homburgs $
026 */
027 public class DaySelectModel extends AbstractSelectModel
028 {
029 /**
030 * The list of groups, each containing some number of individual options.
031 *
032 * @return the groups, or null
033 */
034 public List<OptionGroupModel> getOptionGroups()
035 {
036 return null; //To change body of implemented methods use File | Settings | File Templates.
037 }
038
039 /**
040 * The list of ungrouped options, which appear after any grouped options. Generally, a model will either provide
041 * option groups or ungrouped options, but not both.
042 *
043 * @return the ungrouped options, or null
044 */
045 public List<OptionModel> getOptions()
046 {
047 return null; //To change body of implemented methods use File | Settings | File Templates.
048 }
049 }