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.cbetm;
15 import org.openhab.binding.teleinfo.internal.dto.common.FrameAdco;
18 * The {@link FrameCbetm} class defines common attributes for CBETM Teleinfo frames.
20 * @author Nicolas SIBERIL - Initial contribution
22 public abstract class FrameCbetm extends FrameAdco {
24 private static final long serialVersionUID = 2083723009359732507L;
26 private int iinst1; // ampères
27 private int iinst2; // ampères
28 private int iinst3; // ampères
31 // default constructor
34 public int getIinst1() {
38 public void setIinst1(int iinst1) {
42 public int getIinst2() {
46 public void setIinst2(int iinst2) {
50 public int getIinst3() {
54 public void setIinst3(int iinst3) {