mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-30 13:12:25 -05:00
Naming
This commit is contained in:
parent
5af649c271
commit
2536719749
@ -1078,8 +1078,8 @@ public class Account implements BaseAccount, StoreConfig {
|
|||||||
return mDraftsFolderName;
|
return mDraftsFolderName;
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized void setDraftsFolderName(String draftsFolderName) {
|
public synchronized void setDraftsFolderName(String name) {
|
||||||
mDraftsFolderName = draftsFolderName;
|
mDraftsFolderName = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1098,8 +1098,8 @@ public class Account implements BaseAccount, StoreConfig {
|
|||||||
return K9.ERROR_FOLDER_NAME;
|
return K9.ERROR_FOLDER_NAME;
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized void setSentFolderName(String sentFolderName) {
|
public synchronized void setSentFolderName(String name) {
|
||||||
mSentFolderName = sentFolderName;
|
mSentFolderName = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1115,8 +1115,8 @@ public class Account implements BaseAccount, StoreConfig {
|
|||||||
return mTrashFolderName;
|
return mTrashFolderName;
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized void setTrashFolderName(String trashFolderName) {
|
public synchronized void setTrashFolderName(String name) {
|
||||||
mTrashFolderName = trashFolderName;
|
mTrashFolderName = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1147,8 +1147,8 @@ public class Account implements BaseAccount, StoreConfig {
|
|||||||
return mSpamFolderName;
|
return mSpamFolderName;
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized void setSpamFolderName(String spamFolderName) {
|
public synchronized void setSpamFolderName(String name) {
|
||||||
mSpamFolderName = spamFolderName;
|
mSpamFolderName = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1167,8 +1167,8 @@ public class Account implements BaseAccount, StoreConfig {
|
|||||||
return mAutoExpandFolderName;
|
return mAutoExpandFolderName;
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized void setAutoExpandFolderName(String autoExpandFolderName) {
|
public synchronized void setAutoExpandFolderName(String name) {
|
||||||
mAutoExpandFolderName = autoExpandFolderName;
|
mAutoExpandFolderName = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized int getAccountNumber() {
|
public synchronized int getAccountNumber() {
|
||||||
@ -1659,8 +1659,8 @@ public class Account implements BaseAccount, StoreConfig {
|
|||||||
return mInboxFolderName;
|
return mInboxFolderName;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setInboxFolderName(String mInboxFolderName) {
|
public void setInboxFolderName(String name) {
|
||||||
this.mInboxFolderName = mInboxFolderName;
|
this.mInboxFolderName = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized boolean syncRemoteDeletions() {
|
public synchronized boolean syncRemoteDeletions() {
|
||||||
|
@ -12,12 +12,11 @@ public interface StoreConfig {
|
|||||||
String getOutboxFolderName();
|
String getOutboxFolderName();
|
||||||
String getDraftsFolderName();
|
String getDraftsFolderName();
|
||||||
|
|
||||||
void setInboxFolderName(String folderName);
|
void setDraftsFolderName(String name);
|
||||||
void setDraftsFolderName(String decodedFolderName);
|
void setTrashFolderName(String name);
|
||||||
void setTrashFolderName(String decodedFolderName);
|
void setSpamFolderName(String name);
|
||||||
void setSpamFolderName(String decodedFolderName);
|
void setSentFolderName(String name);
|
||||||
void setSentFolderName(String decodedFolderName);
|
void setAutoExpandFolderName(String name);
|
||||||
void setAutoExpandFolderName(String folderName);
|
|
||||||
|
|
||||||
int getMaximumAutoDownloadMessageSize();
|
int getMaximumAutoDownloadMessageSize();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user