1 /*******************************************************************************
2 * Copyright (c) 2012 - 2015 hangum.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser Public License v2.1
5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
9 * hangum - initial API and implementation
10 ******************************************************************************/
11 package com
.hangum
.tadpole
.preference
.ui
;
13 import org
.eclipse
.jface
.preference
.PreferencePage
;
14 import org
.eclipse
.jface
.resource
.ImageDescriptor
;
16 import com
.hangum
.tadpole
.engine
.query
.sql
.TadpoleSystem_UserInfoData
;
19 * System default preference page
26 public abstract class TadpoleDefaulPreferencePage
extends PreferencePage
{
31 public TadpoleDefaulPreferencePage() {
37 public TadpoleDefaulPreferencePage(String title
) {
45 public TadpoleDefaulPreferencePage(String title
, ImageDescriptor image
) {
56 protected void updateEncriptInfo(String key
, String value
) throws Exception
{
57 TadpoleSystem_UserInfoData
.updateEncriptValue(key
, value
);
60 protected void updateInfo(String key
, String value
) throws Exception
{
61 TadpoleSystem_UserInfoData
.updateValue(key
, value
);