Back to project page vitdroid-android.
The source code is released under:
Apache License
If you think the Android project vitdroid-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2011 Daniel Berndt - Codeus Ltd - DateSlider *//from www . j a va 2 s .c o m * This interface represents Views that are put onto the ScrollLayout * * 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. */ package com.googlecode.android.widgets.DateSlider.timeview; import com.googlecode.android.widgets.DateSlider.TimeObject; /** * This interface represents the views that will be placed in the ScrollLayout. * Each TimeView represents a visible element in the ScrollLayout, and is * displayed as a single point in time (e.g. January), but actually represents a * range of times (e.g. 1/1-1/31). The TimeView stores the range as well as * a string describing how to display itself. */ public interface TimeView { /** * Sets this TimeView to display the contents of the specified TimeObject. * * @param to The TimeObject to use to populate this TimeView */ public void setVals(TimeObject to); /** * Instructs this TimeView to copy its values from the specified TimeView, so * it will assume the state of the other TimeView. * * @param other The TimeView to copy values from */ public void setVals(TimeView other); /** * Get a string containing the textual representation of this TimeView's time * @return */ public String getTimeText(); /** * Get the start time of this TimeView * @return */ public long getStartTime(); /** * Get the end time of this TimeView * @return */ public long getEndTime(); public boolean isOutOfBounds(); public void setOutOfBounds(boolean outOfBounds); }