/* * 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; /** * Bit12 * @author taktod */ public class Bit12 extends BitN { /** * constructor * @param value */ public Bit12(int value) { this(); set(value); } /** * constructor */ public Bit12() { super(new Bit4(), new Bit8()); } }