/* * myLib - https://github.com/taktod/myLib * Copyright (c) 2014 ttProject. All rights reserved. * * Licensed under The MIT license. */ package com.ttProject.unit.extra.bit; import com.ttProject.unit.extra.BitN; /** * Bit14 * @author taktod */ public class Bit14 extends BitN { /** * constructor * @param value */ public Bit14(int value) { this(); set(value); } /** * constructor */ public Bit14() { super(new Bit6(), new Bit8()); } }