@@ -107,6 +107,19 @@ public Note() {
107
107
super ();
108
108
}
109
109
110
+ @ Ignore
111
+ public Note (@ Nullable Long remoteId , @ Nullable Calendar modified , @ NonNull String title , @ NonNull String content , @ NonNull String category , boolean favorite , @ Nullable String eTag ) {
112
+ this (remoteId ,
113
+ modified ,
114
+ title ,
115
+ content ,
116
+ category ,
117
+ favorite ,
118
+ eTag ,
119
+ false ,
120
+ false );
121
+ }
122
+
110
123
@ Ignore
111
124
public Note (@ Nullable Long remoteId , @ Nullable Calendar modified , @ NonNull String title , @ NonNull String content , @ NonNull String category , boolean favorite , @ Nullable String eTag , boolean isShared , boolean readonly ) {
112
125
this .remoteId = remoteId ;
@@ -119,6 +132,16 @@ public Note(@Nullable Long remoteId, @Nullable Calendar modified, @NonNull Strin
119
132
this .isShared = isShared ;
120
133
}
121
134
135
+ @ Ignore
136
+ public Note (long id , @ Nullable Long remoteId , @ Nullable Calendar modified , @ NonNull String title , @ NonNull String content , @ NonNull String category , boolean favorite , @ Nullable String etag , @ NonNull DBStatus status , long accountId , @ NonNull String excerpt , int scrollY ) {
137
+ this (remoteId , modified , title , content , category , favorite , etag , false , false );
138
+ this .id = id ;
139
+ this .status = status ;
140
+ this .accountId = accountId ;
141
+ this .excerpt = excerpt ;
142
+ this .scrollY = scrollY ;
143
+ }
144
+
122
145
@ Ignore
123
146
public Note (long id , @ Nullable Long remoteId , @ Nullable Calendar modified , @ NonNull String title , @ NonNull String content , @ NonNull String category , boolean favorite , @ Nullable String etag , @ NonNull DBStatus status , long accountId , @ NonNull String excerpt , int scrollY , boolean isShared , boolean readonly ) {
124
147
this (remoteId , modified , title , content , category , favorite , etag , isShared , readonly );
@@ -308,4 +331,4 @@ public String toString() {
308
331
", scrollY=" + scrollY +
309
332
'}' ;
310
333
}
311
- }
334
+ }
0 commit comments