mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-12 05:47:46 +01:00
brut.androlib.res.data.value.ResXmlPrintable -> brut.androlib.res.xml.ResXmlEncodable .
This commit is contained in:
parent
41134c6b91
commit
7d4edce7ee
@ -16,6 +16,7 @@
|
||||
|
||||
package brut.androlib.res.data.value;
|
||||
|
||||
import brut.androlib.res.xml.ResXmlEncodable;
|
||||
import brut.androlib.AndrolibException;
|
||||
import brut.androlib.res.data.ResResource;
|
||||
import java.io.IOException;
|
||||
@ -25,7 +26,7 @@ import org.xmlpull.v1.XmlSerializer;
|
||||
* @author Ryszard Wiśniewski <brut.alll@gmail.com>
|
||||
*/
|
||||
public abstract class ResScalarValue extends ResValue
|
||||
implements ResXmlPrintable, ResValuesXmlSerializable {
|
||||
implements ResXmlEncodable, ResValuesXmlSerializable {
|
||||
protected final String mType;
|
||||
|
||||
protected ResScalarValue(String type) {
|
||||
|
@ -14,13 +14,13 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package brut.androlib.res.data.value;
|
||||
package brut.androlib.res.xml;
|
||||
|
||||
import brut.androlib.AndrolibException;
|
||||
|
||||
/**
|
||||
* @author Ryszard Wiśniewski <brut.alll@gmail.com>
|
||||
*/
|
||||
public interface ResXmlPrintable {
|
||||
public interface ResXmlEncodable {
|
||||
public String toResXmlFormat() throws AndrolibException;
|
||||
}
|
Loading…
Reference in New Issue
Block a user