ILetterProcess.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:0k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section3;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public interface ILetterProcess {
  7. //首先要写信的内容
  8. public void writeContext(String context);
  9. //其次写信封
  10. public void fillEnvelope(String address);
  11. //把信放到信封里
  12. public void letterInotoEnvelope();
  13. //然后邮递
  14. public void sendLetter();
  15. }