001// --------------------------------------------------------------------------------
002// Copyright 2002-2024 Echo Three, LLC
003//
004// Licensed under the Apache License, Version 2.0 (the "License");
005// you may not use this file except in compliance with the License.
006// You may obtain a copy of the License at
007//
008//     http://www.apache.org/licenses/LICENSE-2.0
009//
010// Unless required by applicable law or agreed to in writing, software
011// distributed under the License is distributed on an "AS IS" BASIS,
012// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013// See the License for the specific language governing permissions and
014// limitations under the License.
015// --------------------------------------------------------------------------------
016
017package com.echothree.control.user.party.common.edit;
018
019import com.echothree.control.user.party.common.spec.DateTimeFormatSpec;
020
021public interface DateTimeFormatEdit
022        extends DateTimeFormatSpec, DateTimeFormatDescriptionEdit {
023    
024    String getJavaShortDateFormat();
025    void setJavaShortDateFormat(String javaShortDateFormat);
026    
027    String getJavaAbbrevDateFormat();
028    void setJavaAbbrevDateFormat(String javaAbbrevDateFormat);
029    
030    String getJavaAbbrevDateFormatWeekday();
031    void setJavaAbbrevDateFormatWeekday(String javaAbbrevDateFormatWeekday);
032    
033    String getJavaLongDateFormat();
034    void setJavaLongDateFormat(String javaLongDateFormat);
035    
036    String getJavaLongDateFormatWeekday();
037    void setJavaLongDateFormatWeekday(String javaLongDateFormatWeekday);
038    
039    String getJavaTimeFormat();
040    void setJavaTimeFormat(String javaTimeFormat);
041    
042    String getJavaTimeFormatSeconds();
043    void setJavaTimeFormatSeconds(String javaTimeFormatSeconds);
044    
045    String getUnixShortDateFormat();
046    void setUnixShortDateFormat(String unixShortDateFormat);
047    
048    String getUnixAbbrevDateFormat();
049    void setUnixAbbrevDateFormat(String unixAbbrevDateFormat);
050    
051    String getUnixAbbrevDateFormatWeekday();
052    void setUnixAbbrevDateFormatWeekday(String unixAbbrevDateFormatWeekday);
053    
054    String getUnixLongDateFormat();
055    void setUnixLongDateFormat(String unixLongDateFormat);
056    
057    String getUnixLongDateFormatWeekday();
058    void setUnixLongDateFormatWeekday(String unixLongDateFormatWeekday);
059    
060    String getUnixTimeFormat();
061    void setUnixTimeFormat(String unixTimeFormat);
062    
063    String getUnixTimeFormatSeconds();
064    void setUnixTimeFormatSeconds(String unixTimeFormatSeconds);
065    
066    String getShortDateSeparator();
067    void setShortDateSeparator(String shortDateSeparator);
068    
069    String getTimeSeparator();
070    void setTimeSeparator(String timeSeparator);
071    
072    String getIsDefault();
073    void setIsDefault(String isDefault);
074    
075    String getSortOrder();
076    void setSortOrder(String sortOrder);
077    
078}