first commit
This commit is contained in:
commit
4d332ef662
27586 changed files with 3281783 additions and 0 deletions
20
rus/WEB-INF/lib/javax.mail_src/javax/mail/Header.java
Normal file
20
rus/WEB-INF/lib/javax.mail_src/javax/mail/Header.java
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
package javax.mail;
|
||||
|
||||
public class Header {
|
||||
protected String name;
|
||||
|
||||
protected String value;
|
||||
|
||||
public Header(String name, String value) {
|
||||
this.name = name;
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return this.value;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue