mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-26 09:43:15 +00:00
Save系のメソッドからチェーンできる必要はなさそうなので戻り値をvoidに
This commit is contained in:
parent
e20b3f4a35
commit
301678658c
|
@ -34,12 +34,12 @@ public interface FileManager {
|
||||||
|
|
||||||
// Save
|
// Save
|
||||||
// XML
|
// XML
|
||||||
FileManager saveXml(Document document, String fileName) throws IOException;
|
void saveXml(Document document, String fileName) throws IOException;
|
||||||
FileManager saveXml(Document document) throws IOException;
|
void saveXml(Document document) throws IOException;
|
||||||
|
|
||||||
// Bitmap
|
// Bitmap
|
||||||
FileManager saveBitmap(Bitmap bitmap, String fileName) throws IOException; // TODO-rca: パラメータに対応させる
|
void saveBitmap(Bitmap bitmap, String fileName) throws IOException; // TODO-rca: パラメータに対応させる
|
||||||
FileManager saveBitmap(Bitmap bitmap) throws IOException; // TODO-rca: パラメータに対応させる
|
void saveBitmap(Bitmap bitmap) throws IOException; // TODO-rca: パラメータに対応させる
|
||||||
|
|
||||||
|
|
||||||
// Load
|
// Load
|
||||||
|
|
|
@ -187,22 +187,22 @@ public class FileManagerImpl implements FileManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public FileManager saveXml(Document document, String fileName) throws IOException {
|
public void saveXml(Document document, String fileName) throws IOException {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public FileManager saveXml(Document document) throws IOException {
|
public void saveXml(Document document) throws IOException {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public FileManager saveBitmap(Bitmap bitmap, String fileName) throws IOException {
|
public void saveBitmap(Bitmap bitmap, String fileName) throws IOException {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public FileManager saveBitmap(Bitmap bitmap) throws IOException {
|
public void saveBitmap(Bitmap bitmap) throws IOException {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user