Spaces:
Running
Running
| /** | |
| * Copyright (c) 2017~2019, OBCon Inc. | |
| * All rights reserved. | |
| */ | |
| /** | |
| * @file | |
| * @copyright 2017~2019, OBCon Inc. | |
| * @author gye hyun james kim [pnuskgh@gmail.com] | |
| */ | |
| class FieldBase { | |
| constructor() { | |
| this._type = 'base'; | |
| this._value = null; | |
| } | |
| get type() { | |
| return this._type; | |
| } | |
| set type(newValue) { | |
| this._type = newValue; | |
| } | |
| get value() { | |
| return this._value; | |
| } | |
| set value(newValue) { | |
| this._value = newValue; | |
| } | |
| } | |
| module.exports = FieldBase; | |