1 /* 2 * Copyright (C) 2014 The Android Open Source Project 3 * Copyright (c) 1995, 2000, Oracle and/or its affiliates. All rights reserved. 4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 * 6 * This code is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License version 2 only, as 8 * published by the Free Software Foundation. Oracle designates this 9 * particular file as subject to the "Classpath" exception as provided 10 * by Oracle in the LICENSE file that accompanied this code. 11 * 12 * This code is distributed in the hope that it will be useful, but WITHOUT 13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 15 * version 2 for more details (a copy is included in the LICENSE file that 16 * accompanied this code). 17 * 18 * You should have received a copy of the GNU General Public License version 19 * 2 along with this work; if not, write to the Free Software Foundation, 20 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 21 * 22 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 23 * or visit www.oracle.com if you need additional information or have any 24 * questions. 25 */ 26 27 package sun.misc; 28 29 @SuppressWarnings({"unchecked", "deprecation", "all"}) 30 public class MessageUtils { 31 32 @dalvik.annotation.compat.UnsupportedAppUsage MessageUtils()33 public MessageUtils() { 34 throw new RuntimeException("Stub!"); 35 } 36 subst(java.lang.String patt, java.lang.String arg)37 public static java.lang.String subst(java.lang.String patt, java.lang.String arg) { 38 throw new RuntimeException("Stub!"); 39 } 40 subst( java.lang.String patt, java.lang.String arg1, java.lang.String arg2)41 public static java.lang.String subst( 42 java.lang.String patt, java.lang.String arg1, java.lang.String arg2) { 43 throw new RuntimeException("Stub!"); 44 } 45 subst( java.lang.String patt, java.lang.String arg1, java.lang.String arg2, java.lang.String arg3)46 public static java.lang.String subst( 47 java.lang.String patt, 48 java.lang.String arg1, 49 java.lang.String arg2, 50 java.lang.String arg3) { 51 throw new RuntimeException("Stub!"); 52 } 53 subst(java.lang.String patt, java.lang.String[] args)54 public static java.lang.String subst(java.lang.String patt, java.lang.String[] args) { 55 throw new RuntimeException("Stub!"); 56 } 57 substProp(java.lang.String propName, java.lang.String arg)58 public static java.lang.String substProp(java.lang.String propName, java.lang.String arg) { 59 throw new RuntimeException("Stub!"); 60 } 61 substProp( java.lang.String propName, java.lang.String arg1, java.lang.String arg2)62 public static java.lang.String substProp( 63 java.lang.String propName, java.lang.String arg1, java.lang.String arg2) { 64 throw new RuntimeException("Stub!"); 65 } 66 substProp( java.lang.String propName, java.lang.String arg1, java.lang.String arg2, java.lang.String arg3)67 public static java.lang.String substProp( 68 java.lang.String propName, 69 java.lang.String arg1, 70 java.lang.String arg2, 71 java.lang.String arg3) { 72 throw new RuntimeException("Stub!"); 73 } 74 err(java.lang.String s)75 public static void err(java.lang.String s) { 76 throw new RuntimeException("Stub!"); 77 } 78 out(java.lang.String s)79 public static void out(java.lang.String s) { 80 throw new RuntimeException("Stub!"); 81 } 82 where()83 public static void where() { 84 throw new RuntimeException("Stub!"); 85 } 86 } 87