Blame view

src/main/java/org/richfaces/component/ScheduleCommonViewAttributes.java 1.61 KB
bernard authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * JBoss, Home of Professional Open Source
 * Copyright , Red Hat, Inc. and individual contributors
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
bernard authored
22 23
package org.richfaces.component;
bernard authored
24 25 26 27 28 29
/**
 * Interface with common attributes of all view components.
 * Saves some lines in UISchedule...View classes.
 *
 * @author Bernard Labno
 */
bernard authored
30
public interface ScheduleCommonViewAttributes {
bernard authored
31
// -------------------------- OTHER METHODS --------------------------
bernard authored
32 33 34

    public String getColumnFormat();
bernard authored
35
    public Double getDragOpacity();
bernard authored
36
bernard authored
37
    public String getTimeFormat();
bernard authored
38
bernard authored
39
    public String getTitleFormat();
bernard authored
40
bernard authored
41
    public void setColumnFormat(String format);
bernard authored
42 43

    public void setDragOpacity(Double dragOpacity);
bernard authored
44 45 46 47

    public void setTimeFormat(String format);

    public void setTitleFormat(String format);
bernard authored
48
}