📄 puppie.java
字号:
package com.javapatterns.adapter.kittie2puppie;
public interface Puppie
{
/** Class Adaptee contains operation sampleOperation1. */
void wao();
/** Class Adaptee doesn't contain operation sampleOperation2. */
void fetchBall();
void run();
void sleep();
void setName(String name);
String getName();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -