⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 untrustedinput.java

📁 kmlnjlkj nlkjlkjkljl okopokipoipo oipipipo i
💻 JAVA
字号:
package org.bouncycastle.i18n.filter;/** * Wrapper class to mark untrusted input. */public class UntrustedInput {    protected Object input;    /**     * Construct a new UntrustedInput instance.     * @param input the untrusted input Object     */    public UntrustedInput(Object input)     {        this.input = input;    }    /**     * Returns the untrusted input as Object.     * @return the <code>input</code> as Object     */    public Object getInput()     {        return input;    }    /**     * Returns the untrusted input convertet to a String.     * @return the <code>input</code> as String     */    public String getString()     {        return input.toString();    }        public String toString()    {        return input.toString();    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -