This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.danilov.mangareaderplus.core.database; | |
import java.util.ArrayList; | |
import java.util.HashMap; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.Set; | |
/** | |
* Created by Semyon Danilov on 05.07.2014. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static MyCardFragment create(CharSequence title, CharSequence text, int iconRes) { | |
MyCardFragment fragment = new MyCardFragment(); | |
Bundle args = new Bundle(); | |
if (title != null) args.putCharSequence("CardFragment_title", title); | |
if (text != null) args.putCharSequence("CardFragment_text", text); | |
if (iconRes != 0) args.putInt("CardFragment_icon", iconRes); | |
fragment.setArguments(args); | |
return fragment; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static MyCardFragment create(CharSequence title, CharSequence text, int iconRes) { | |
MyCardFragment fragment = new MyCardFragment(); | |
Bundle args = new Bundle(); | |
if (title != null) args.putCharSequence("CardFragment_title", title); | |
if (text != null) args.putCharSequence("CardFragment_text", text); | |
if (iconRes != 0) args.putInt("CardFragment_icon", iconRes); | |
fragment.setArguments(args); | |
return fragment; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<build> | |
<defaultGoal>package</defaultGoal> | |
<finalName>wp2</finalName> | |
<resources> | |
<resource> | |
<directory>${isframework.conf.src}</directory> | |
<targetPath>${isframework.conf.tmp}</targetPath> | |
<filtering>true</filtering> | |
<includes> |
NewerOlder