2 * Copyright (c) 2010-2020 Contributors to the openHAB project
4 * See the NOTICE file(s) distributed with this work for additional
7 * This program and the accompanying materials are made available under the
8 * terms of the Eclipse Public License 2.0 which is available at
9 * http://www.eclipse.org/legal/epl-2.0
11 * SPDX-License-Identifier: EPL-2.0
13 package org.openhab.binding.teleinfo.internal.dto.common;
16 * The {@link FrameTempoOption} interface defines common attributes for Tempo option.
18 * @author Nicolas SIBERIL - Initial contribution
20 public interface FrameTempoOption {
22 public static enum CouleurDemain {
28 public static enum ProgrammeCircuit1 {
34 public static enum ProgrammeCircuit2 {
47 void setBbrhpjr(int bbrhpjr);
51 void setBbrhcjr(int bbrhcjr);
55 void setBbrhpjw(int bbrhpjw);
59 void setBbrhcjw(int bbrhcjw);
63 void setBbrhpjb(int bbrhpjb);
67 void setBbrhcjb(int bbrhcjb);
69 CouleurDemain getDemain();
71 void setDemain(CouleurDemain couleurDemain);
75 void setHhphc(Hhphc hhphc);
77 ProgrammeCircuit1 getProgrammeCircuit1();
79 void setProgrammeCircuit1(ProgrammeCircuit1 programmeCircuit1);
81 ProgrammeCircuit2 getProgrammeCircuit2();
83 void setProgrammeCircuit2(ProgrammeCircuit2 programmeCircuit2);