From 4213125d5f34551e8b926d53193638297f0affcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ryszard=20Wi=C5=9Bniewski?= Date: Mon, 22 Mar 2010 16:09:49 +0100 Subject: [PATCH] +ResDimenValue +ResFractionValue --- .../res/data/value/ResDimenValue.java | 38 +++++++++++++++++++ .../res/data/value/ResFractionValue.java | 35 +++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 src/brut/androlib/res/data/value/ResDimenValue.java create mode 100644 src/brut/androlib/res/data/value/ResFractionValue.java diff --git a/src/brut/androlib/res/data/value/ResDimenValue.java b/src/brut/androlib/res/data/value/ResDimenValue.java new file mode 100644 index 00000000..87a027cd --- /dev/null +++ b/src/brut/androlib/res/data/value/ResDimenValue.java @@ -0,0 +1,38 @@ +/* + * Copyright 2010 Ryszard Wiśniewski . + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * under the License. + */ + +package brut.androlib.res.data.value; + +import android.util.TypedValue; +import brut.androlib.AndrolibException; +import brut.androlib.res.data.ResResource; +import java.io.IOException; +import org.xmlpull.v1.XmlSerializer; + +/** + * @author Ryszard Wiśniewski + */ +public class ResDimenValue extends ResIntValue { + public ResDimenValue(int value) { + super(value, "dimen"); + } + + @Override + public String toResXmlFormat() throws AndrolibException { + return TypedValue.coerceToString(TypedValue.TYPE_DIMENSION, mValue); + } +} diff --git a/src/brut/androlib/res/data/value/ResFractionValue.java b/src/brut/androlib/res/data/value/ResFractionValue.java new file mode 100644 index 00000000..5e8a8361 --- /dev/null +++ b/src/brut/androlib/res/data/value/ResFractionValue.java @@ -0,0 +1,35 @@ +/* + * Copyright 2010 Ryszard Wiśniewski . + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * under the License. + */ + +package brut.androlib.res.data.value; + +import android.util.TypedValue; +import brut.androlib.AndrolibException; + +/** + * @author Ryszard Wiśniewski + */ +public class ResFractionValue extends ResIntValue { + public ResFractionValue(int value) { + super(value, "fraction"); + } + + @Override + public String toResXmlFormat() throws AndrolibException { + return TypedValue.coerceToString(TypedValue.TYPE_FRACTION, mValue); + } +}