Output.java revision 1297169e0952bcec5786304b29b45017d7074d52
1/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.mkstubs.sourcer;
18
19import org.objectweb.asm.Type;
20
21import java.io.IOException;
22import java.io.Writer;
23
24/**
25 *
26 */
27public class Output {
28
29    private final Writer mWriter;
30
31    public Output(Writer writer) {
32        mWriter = writer;
33    }
34
35    public void write(String format, Object... args) {
36        try {
37            mWriter.write(String.format(format, args));
38        } catch (IOException e) {
39            throw new RuntimeException(e);
40        }
41    }
42
43    public void write(char c) {
44        write(Character.toString(c));
45    }
46
47    public void write(StringBuilder sb) {
48        write(sb.toString());
49    }
50
51
52    public String decodeDesc(String desc) {
53        return Type.getType(desc).getClassName();
54    }
55
56
57}
58