001/******************************************************************************* 002 * Crown Copyright (c) 2006 - 2014, Copyright (c) 2006 - 2014 Kestral Computing P/L. 003 * All rights reserved. This program and the accompanying materials 004 * are made available under the terms of the Eclipse Public License v1.0 005 * which accompanies this distribution, and is available at 006 * http://www.eclipse.org/legal/epl-v10.html 007 * 008 * Contributors: 009 * Kestral Computing P/L - initial implementation 010 *******************************************************************************/ 011 012package org.fhir.ucum; 013 014 015public class Factor extends Component { 016 017 private int value; 018 019 /** 020 * 021 */ 022 public Factor() { 023 super(); 024 // TODO Auto-generated constructor stub 025 } 026 027 /** 028 * @param value 029 */ 030 public Factor(int value) { 031 super(); 032 this.value = value; 033 } 034 035 /** 036 * @return the value 037 */ 038 public int getValue() { 039 return value; 040 } 041 042 /** 043 * @param value the value to set 044 */ 045 public void setValue(int value) { 046 this.value = value; 047 } 048 049 050}