repo
stringclasses
1k values
file_url
stringlengths
96
373
file_path
stringlengths
11
294
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
6 values
commit_sha
stringclasses
1k values
retrieved_at
stringdate
2026-01-04 14:45:56
2026-01-04 18:30:23
truncated
bool
2 classes
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/ws_ret.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/ws_ret.java
/** * created by jiang, 15/10/19 * Copyright (c) 2015, jyuesong@gmail.com All Rights Reserved. * * # # * # _oo0oo_ # * # o8888888o # * # 88" . "88...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/Param.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/Param.java
/** * created by jiang, 10/26/15 * Copyright (c) 2015, jyuesong@gmail.com All Rights Reserved. * * # # * # _oo0oo_ # * # o8888888o # * # 88" . "88...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/WS_State.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/WS_State.java
/** * created by jiang, 15/10/19 * Copyright (c) 2015, jyuesong@gmail.com All Rights Reserved. * * # # * # _oo0oo_ # * # o8888888o # * # 88" . "88...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/OkHttpTask.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/OkHttpTask.java
/** * created by jiang, 16/5/14 * Copyright (c) 2016, jyuesong@gmail.com All Rights Reserved. * * # # * # _oo0oo_ # * # o8888888o # * # 88" . "88 ...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/cookie/CookieJarImpl.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/cookie/CookieJarImpl.java
package com.jiang.android.architecture.okhttp.cookie; import com.jiang.android.architecture.okhttp.cookie.store.CookieStore; import com.jiang.android.architecture.okhttp.cookie.store.HasCookieStore; import com.jiang.android.architecture.okhttp.exception.Exceptions; import java.util.List; import okhttp3.Cookie; impor...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/cookie/store/SerializableHttpCookie.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/cookie/store/SerializableHttpCookie.java
package com.jiang.android.architecture.okhttp.cookie.store; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; import okhttp3.Cookie; /** * from http://stackoverflow.com/questions/25461792/persistent-cookie-store-using-okhttp-2-on-android *...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/cookie/store/PersistentCookieStore.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/cookie/store/PersistentCookieStore.java
package com.jiang.android.architecture.okhttp.cookie.store; import android.content.Context; import android.content.SharedPreferences; import android.text.TextUtils; import android.util.Log; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectInpu...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/cookie/store/CookieStore.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/cookie/store/CookieStore.java
package com.jiang.android.architecture.okhttp.cookie.store; import java.util.List; import okhttp3.Cookie; import okhttp3.HttpUrl; public interface CookieStore { public void add(HttpUrl uri, List<Cookie> cookie); public List<Cookie> get(HttpUrl uri); public List<Cookie> getCookies(); public bo...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/cookie/store/HasCookieStore.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/cookie/store/HasCookieStore.java
package com.jiang.android.architecture.okhttp.cookie.store; /** * Created by zhy on 16/3/10. */ public interface HasCookieStore { CookieStore getCookieStore(); }
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/cookie/store/MemoryCookieStore.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/cookie/store/MemoryCookieStore.java
package com.jiang.android.architecture.okhttp.cookie.store; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Set; import okhttp3.Cookie; import okhttp3.HttpUrl; /** * Created by zhy on 16/3/10. */ public class MemoryCookieStore implements Cook...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/exception/NotPermissionException.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/exception/NotPermissionException.java
/** * created by jiang, 12/5/15 * Copyright (c) 2015, jyuesong@gmail.com All Rights Reserved. * * # # * # _oo0oo_ # * # o8888888o # * # 88" . "88 ...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/exception/Exceptions.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/exception/Exceptions.java
package com.jiang.android.architecture.okhttp.exception; public class Exceptions { public static void illegalArgument(String msg, Object... params) { throw new IllegalArgumentException(String.format(msg, params)); } }
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/callback/NormalCallBack.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/callback/NormalCallBack.java
package com.jiang.android.architecture.okhttp.callback; import com.jiang.android.architecture.okhttp.ws_ret; import okhttp3.Response; /** * Created by jiang on 2016/11/29. */ public abstract class NormalCallBack<T> extends BaseCallBack<T> { @Override public void onNoData(ws_ret ret) { } @Overr...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/callback/BaseCallBack.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/callback/BaseCallBack.java
/** * created by jiang, 10/25/15 * Copyright (c) 2015, jyuesong@gmail.com All Rights Reserved. * * # # * # _oo0oo_ # * # o8888888o # * # 88" . "88...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/utils/HttpUtils.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/utils/HttpUtils.java
/** * created by jiang, 15/10/19 * Copyright (c) 2015, jyuesong@gmail.com All Rights Reserved. * * # # * # _oo0oo_ # * # o8888888o # * # 88" . "88...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/utils/HeaderUtils.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/utils/HeaderUtils.java
/** * created by jiang, 10/23/15 * Copyright (c) 2015, jyuesong@gmail.com All Rights Reserved. * * # # * # _oo0oo_ # * # o8888888o # * # 88" . "88...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/utils/HttpsUtils.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/utils/HttpsUtils.java
package com.jiang.android.architecture.okhttp.utils; import java.io.IOException; import java.io.InputStream; import java.security.KeyManagementException; import java.security.KeyStore; import java.security.KeyStoreException; import java.security.NoSuchAlgorithmException; import java.security.SecureRandom; import java....
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/log/HttpLoggingInterceptor.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/log/HttpLoggingInterceptor.java
package com.jiang.android.architecture.okhttp.log; import java.io.EOFException; import java.io.IOException; import java.nio.charset.Charset; import java.nio.charset.UnsupportedCharsetException; import java.util.concurrent.TimeUnit; import okhttp3.Connection; import okhttp3.Headers; import okhttp3.Interceptor; import ...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/request/DeleteRequest.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/request/DeleteRequest.java
/** * created by jiang, 15/10/19 * Copyright (c) 2015, jyuesong@gmail.com All Rights Reserved. * * # # * # _oo0oo_ # * # o8888888o # * # 88" . "88...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/request/PostRequest.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/request/PostRequest.java
/** * created by jiang, 15/10/19 * Copyright (c) 2015, jyuesong@gmail.com All Rights Reserved. * * # # * # _oo0oo_ # * # o8888888o # * # 88" . "88...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/request/UploadRequest.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/request/UploadRequest.java
package com.jiang.android.architecture.okhttp.request; import com.jiang.android.architecture.okhttp.Param; import com.jiang.android.architecture.okhttp.utils.HeaderUtils; import java.util.List; import java.util.Map; import okhttp3.Request; import okhttp3.RequestBody; /** * Created by jiang on 16/7/28. */ public ...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/request/PutRequest.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/request/PutRequest.java
/** * created by jiang, 16/5/14 * Copyright (c) 2016, jyuesong@gmail.com All Rights Reserved. * * # # * # _oo0oo_ # * # o8888888o # * # 88" . "88 ...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/request/CountingRequestBody.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/request/CountingRequestBody.java
package com.jiang.android.architecture.okhttp.request; import java.io.IOException; import okhttp3.MediaType; import okhttp3.RequestBody; import okio.Buffer; import okio.BufferedSink; import okio.ForwardingSink; import okio.Okio; import okio.Sink; /** * Decorates an OkHttp request body to count the number of bytes w...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/okhttp/request/getRequest.java
architecture/src/main/java/com/jiang/android/architecture/okhttp/request/getRequest.java
/** * created by jiang, 15/10/19 * Copyright (c) 2015, jyuesong@gmail.com All Rights Reserved. * * # # * # _oo0oo_ # * # o8888888o # * # 88" . "88...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/adapter/BaseViewHolder.java
architecture/src/main/java/com/jiang/android/architecture/adapter/BaseViewHolder.java
/** * created by jiang, 12/3/15 * Copyright (c) 2015, jyuesong@gmail.com All Rights Reserved. * * # # * # _oo0oo_ # * # o8888888o # * # 88" . "88 ...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/adapter/BaseAdapter.java
architecture/src/main/java/com/jiang/android/architecture/adapter/BaseAdapter.java
package com.jiang.android.architecture.adapter; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; /** * Created by jiang on 16/8/29. */ public abstract class BaseAdapter extends RecyclerView.Adapter<BaseViewHolder> { @Ov...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/adapter/BaseExpandAdapter.java
architecture/src/main/java/com/jiang/android/architecture/adapter/BaseExpandAdapter.java
package com.jiang.android.architecture.adapter; import android.support.v7.widget.RecyclerView; import com.jiang.android.architecture.adapter.expand.StickyRecyclerHeadersAdapter; /** * Created by jiang on 2016/11/29. */ public abstract class BaseExpandAdapter extends BaseAdapter implements StickyRecyclerHeadersA...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/adapter/expand/HeaderPositionCalculator.java
architecture/src/main/java/com/jiang/android/architecture/adapter/expand/HeaderPositionCalculator.java
package com.jiang.android.architecture.adapter.expand; import android.graphics.Rect; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.view.View; import android.view.ViewGroup; import android.widget.LinearLayout; /** * Calculates the position and loca...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/adapter/expand/OrientationProvider.java
architecture/src/main/java/com/jiang/android/architecture/adapter/expand/OrientationProvider.java
package com.jiang.android.architecture.adapter.expand; import android.support.v7.widget.RecyclerView; /** * Interface for getting the orientation of a RecyclerView from its LayoutManager */ public interface OrientationProvider { public int getOrientation(RecyclerView recyclerView); public boolean isReverseLay...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/adapter/expand/DimensionCalculator.java
architecture/src/main/java/com/jiang/android/architecture/adapter/expand/DimensionCalculator.java
package com.jiang.android.architecture.adapter.expand; import android.graphics.Rect; import android.view.View; import static android.view.ViewGroup.LayoutParams; import static android.view.ViewGroup.MarginLayoutParams; /** * Helper to calculate various view dimensions */ public class DimensionCalculator { /** ...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/adapter/expand/HeaderRenderer.java
architecture/src/main/java/com/jiang/android/architecture/adapter/expand/HeaderRenderer.java
package com.jiang.android.architecture.adapter.expand; import android.graphics.Canvas; import android.graphics.Rect; import android.support.v7.widget.RecyclerView; import android.view.View; import android.widget.LinearLayout; /** * Responsible for drawing headers to the canvas provided by the item decoration */ pub...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/adapter/expand/LinearLayoutOrientationProvider.java
architecture/src/main/java/com/jiang/android/architecture/adapter/expand/LinearLayoutOrientationProvider.java
package com.jiang.android.architecture.adapter.expand; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; /** * OrientationProvider for ReyclerViews who use a LinearLayoutManager */ public class LinearLayoutOrientationProvider implements OrientationProvider { @Ov...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/adapter/expand/HeaderProvider.java
architecture/src/main/java/com/jiang/android/architecture/adapter/expand/HeaderProvider.java
package com.jiang.android.architecture.adapter.expand; import android.support.v7.widget.RecyclerView; import android.view.View; /** * Implemented by objects that provide header views for decoration */ public interface HeaderProvider { /** * Will provide a header view for a given position in the RecyclerView ...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/adapter/expand/StickyRecyclerHeadersTouchListener.java
architecture/src/main/java/com/jiang/android/architecture/adapter/expand/StickyRecyclerHeadersTouchListener.java
package com.jiang.android.architecture.adapter.expand; import android.support.v7.widget.RecyclerView; import android.view.GestureDetector; import android.view.MotionEvent; import android.view.SoundEffectConstants; import android.view.View; public class StickyRecyclerHeadersTouchListener implements RecyclerView.OnItem...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/adapter/expand/StickyRecyclerHeadersAdapter.java
architecture/src/main/java/com/jiang/android/architecture/adapter/expand/StickyRecyclerHeadersAdapter.java
package com.jiang.android.architecture.adapter.expand; import android.support.v7.widget.RecyclerView; import android.view.ViewGroup; public interface StickyRecyclerHeadersAdapter<VH extends RecyclerView.ViewHolder> { /** * Get the ID of the header associated with this item. For example, if your headers group ...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/adapter/expand/StickyRecyclerHeadersDecoration.java
architecture/src/main/java/com/jiang/android/architecture/adapter/expand/StickyRecyclerHeadersDecoration.java
package com.jiang.android.architecture.adapter.expand; import android.graphics.Canvas; import android.graphics.Rect; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.util.SparseArray; import android.view.View; public class StickyRecyclerHeadersDecorat...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
jiang111/ZhiHu-TopAnswer
https://github.com/jiang111/ZhiHu-TopAnswer/blob/0937f43c34fba9f53cc21f7109b153d944c3c72b/architecture/src/main/java/com/jiang/android/architecture/adapter/expand/HeaderViewCache.java
architecture/src/main/java/com/jiang/android/architecture/adapter/expand/HeaderViewCache.java
package com.jiang.android.architecture.adapter.expand; import android.support.v4.util.LongSparseArray; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.view.View; import android.view.ViewGroup; /** * An implementation of {@link HeaderProvider} that c...
java
Apache-2.0
0937f43c34fba9f53cc21f7109b153d944c3c72b
2026-01-05T02:41:32.344044Z
false
nisrulz/packagehunter
https://github.com/nisrulz/packagehunter/blob/71296e0b4b379a82bbb7fcbb9edb956a285254c5/app/src/test/java/github/nisrulz/projectpackagehunter/ExampleUnitTest.java
app/src/test/java/github/nisrulz/projectpackagehunter/ExampleUnitTest.java
/* * Copyright (C) 2016 Nishant Srivastava * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
java
Apache-2.0
71296e0b4b379a82bbb7fcbb9edb956a285254c5
2026-01-05T02:41:43.347440Z
false
nisrulz/packagehunter
https://github.com/nisrulz/packagehunter/blob/71296e0b4b379a82bbb7fcbb9edb956a285254c5/app/src/main/java/github/nisrulz/projectpackagehunter/SplashActivity.java
app/src/main/java/github/nisrulz/projectpackagehunter/SplashActivity.java
/* * Copyright (C) 2016 Nishant Srivastava * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
java
Apache-2.0
71296e0b4b379a82bbb7fcbb9edb956a285254c5
2026-01-05T02:41:43.347440Z
false
nisrulz/packagehunter
https://github.com/nisrulz/packagehunter/blob/71296e0b4b379a82bbb7fcbb9edb956a285254c5/app/src/main/java/github/nisrulz/projectpackagehunter/MainActivity.java
app/src/main/java/github/nisrulz/projectpackagehunter/MainActivity.java
/* * Copyright (C) 2016 Nishant Srivastava * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
java
Apache-2.0
71296e0b4b379a82bbb7fcbb9edb956a285254c5
2026-01-05T02:41:43.347440Z
false
nisrulz/packagehunter
https://github.com/nisrulz/packagehunter/blob/71296e0b4b379a82bbb7fcbb9edb956a285254c5/app/src/main/java/github/nisrulz/projectpackagehunter/RVMainAdapter.java
app/src/main/java/github/nisrulz/projectpackagehunter/RVMainAdapter.java
/* * Copyright (C) 2016 Nishant Srivastava * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
java
Apache-2.0
71296e0b4b379a82bbb7fcbb9edb956a285254c5
2026-01-05T02:41:43.347440Z
false
nisrulz/packagehunter
https://github.com/nisrulz/packagehunter/blob/71296e0b4b379a82bbb7fcbb9edb956a285254c5/app/src/main/java/github/nisrulz/projectpackagehunter/AboutActivity.java
app/src/main/java/github/nisrulz/projectpackagehunter/AboutActivity.java
/* * Copyright (C) 2016 Nishant Srivastava * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
java
Apache-2.0
71296e0b4b379a82bbb7fcbb9edb956a285254c5
2026-01-05T02:41:43.347440Z
false
nisrulz/packagehunter
https://github.com/nisrulz/packagehunter/blob/71296e0b4b379a82bbb7fcbb9edb956a285254c5/app/src/main/java/github/nisrulz/projectpackagehunter/ElementInfo.java
app/src/main/java/github/nisrulz/projectpackagehunter/ElementInfo.java
/* * Copyright (C) 2016 Nishant Srivastava * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
java
Apache-2.0
71296e0b4b379a82bbb7fcbb9edb956a285254c5
2026-01-05T02:41:43.347440Z
false
nisrulz/packagehunter
https://github.com/nisrulz/packagehunter/blob/71296e0b4b379a82bbb7fcbb9edb956a285254c5/app/src/main/java/github/nisrulz/projectpackagehunter/DetailActivity.java
app/src/main/java/github/nisrulz/projectpackagehunter/DetailActivity.java
/* * Copyright (C) 2016 Nishant Srivastava * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
java
Apache-2.0
71296e0b4b379a82bbb7fcbb9edb956a285254c5
2026-01-05T02:41:43.347440Z
false
nisrulz/packagehunter
https://github.com/nisrulz/packagehunter/blob/71296e0b4b379a82bbb7fcbb9edb956a285254c5/app/src/main/java/github/nisrulz/projectpackagehunter/RVDetailsAdapter.java
app/src/main/java/github/nisrulz/projectpackagehunter/RVDetailsAdapter.java
/* * Copyright (C) 2016 Nishant Srivastava * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
java
Apache-2.0
71296e0b4b379a82bbb7fcbb9edb956a285254c5
2026-01-05T02:41:43.347440Z
false
nisrulz/packagehunter
https://github.com/nisrulz/packagehunter/blob/71296e0b4b379a82bbb7fcbb9edb956a285254c5/app/src/main/java/github/nisrulz/projectpackagehunter/RVItemClickListener.java
app/src/main/java/github/nisrulz/projectpackagehunter/RVItemClickListener.java
/* * Copyright (C) 2016 Nishant Srivastava * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
java
Apache-2.0
71296e0b4b379a82bbb7fcbb9edb956a285254c5
2026-01-05T02:41:43.347440Z
false
nisrulz/packagehunter
https://github.com/nisrulz/packagehunter/blob/71296e0b4b379a82bbb7fcbb9edb956a285254c5/app/src/androidTest/java/github/nisrulz/projectpackagehunter/ApplicationTest.java
app/src/androidTest/java/github/nisrulz/projectpackagehunter/ApplicationTest.java
/* * Copyright (C) 2016 Nishant Srivastava * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
java
Apache-2.0
71296e0b4b379a82bbb7fcbb9edb956a285254c5
2026-01-05T02:41:43.347440Z
false
nisrulz/packagehunter
https://github.com/nisrulz/packagehunter/blob/71296e0b4b379a82bbb7fcbb9edb956a285254c5/packagehunter/src/test/java/github/nisrulz/packagehunter/ExampleUnitTest.java
packagehunter/src/test/java/github/nisrulz/packagehunter/ExampleUnitTest.java
/* * Copyright (C) 2016 Nishant Srivastava * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
java
Apache-2.0
71296e0b4b379a82bbb7fcbb9edb956a285254c5
2026-01-05T02:41:43.347440Z
false
nisrulz/packagehunter
https://github.com/nisrulz/packagehunter/blob/71296e0b4b379a82bbb7fcbb9edb956a285254c5/packagehunter/src/main/java/github/nisrulz/packagehunter/PackageHunter.java
packagehunter/src/main/java/github/nisrulz/packagehunter/PackageHunter.java
/* * Copyright (C) 2016 Nishant Srivastava * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
java
Apache-2.0
71296e0b4b379a82bbb7fcbb9edb956a285254c5
2026-01-05T02:41:43.347440Z
false
nisrulz/packagehunter
https://github.com/nisrulz/packagehunter/blob/71296e0b4b379a82bbb7fcbb9edb956a285254c5/packagehunter/src/main/java/github/nisrulz/packagehunter/PkgInfo.java
packagehunter/src/main/java/github/nisrulz/packagehunter/PkgInfo.java
/* * Copyright (C) 2016 Nishant Srivastava * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
java
Apache-2.0
71296e0b4b379a82bbb7fcbb9edb956a285254c5
2026-01-05T02:41:43.347440Z
false
nisrulz/packagehunter
https://github.com/nisrulz/packagehunter/blob/71296e0b4b379a82bbb7fcbb9edb956a285254c5/packagehunter/src/androidTest/java/github/nisrulz/packagehunter/ApplicationTest.java
packagehunter/src/androidTest/java/github/nisrulz/packagehunter/ApplicationTest.java
/* * Copyright (C) 2016 Nishant Srivastava * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
java
Apache-2.0
71296e0b4b379a82bbb7fcbb9edb956a285254c5
2026-01-05T02:41:43.347440Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-multi-app/src/module-info.java
docking-multi-app/src/module-info.java
/** * Module for the Modern Docking framework */ module modern_docking.multi_app { requires modern_docking.api; requires java.desktop; requires java.logging; exports io.github.andrewauclair.moderndocking.app; }
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-multi-app/src/io/github/andrewauclair/moderndocking/app/LayoutsMenu.java
docking-multi-app/src/io/github/andrewauclair/moderndocking/app/LayoutsMenu.java
/* Copyright (c) 2022 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-multi-app/src/io/github/andrewauclair/moderndocking/app/WindowLayoutBuilder.java
docking-multi-app/src/io/github/andrewauclair/moderndocking/app/WindowLayoutBuilder.java
/* Copyright (c) 2023 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-multi-app/src/io/github/andrewauclair/moderndocking/app/DockableMenuItem.java
docking-multi-app/src/io/github/andrewauclair/moderndocking/app/DockableMenuItem.java
/* Copyright (c) 2022-2025 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distrib...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-multi-app/src/io/github/andrewauclair/moderndocking/app/RootDockingPanel.java
docking-multi-app/src/io/github/andrewauclair/moderndocking/app/RootDockingPanel.java
/* Copyright (c) 2023 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-multi-app/src/io/github/andrewauclair/moderndocking/app/DockingState.java
docking-multi-app/src/io/github/andrewauclair/moderndocking/app/DockingState.java
/* Copyright (c) 2023 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-multi-app/src/io/github/andrewauclair/moderndocking/app/Docking.java
docking-multi-app/src/io/github/andrewauclair/moderndocking/app/Docking.java
/* Copyright (c) 2022-2023 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distrib...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-multi-app/src/io/github/andrewauclair/moderndocking/app/ApplicationLayoutMenuItem.java
docking-multi-app/src/io/github/andrewauclair/moderndocking/app/ApplicationLayoutMenuItem.java
/* Copyright (c) 2023 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-multi-app/src/io/github/andrewauclair/moderndocking/app/LayoutPersistence.java
docking-multi-app/src/io/github/andrewauclair/moderndocking/app/LayoutPersistence.java
/* Copyright (c) 2023 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/demo-multi-app/src/basic/SimplePanel.java
demo-multi-app/src/basic/SimplePanel.java
/* Copyright (c) 2022 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/demo-multi-app/src/basic/BasePanel.java
demo-multi-app/src/basic/BasePanel.java
/* Copyright (c) 2022 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/demo-multi-app/src/basic/MainFrame.java
demo-multi-app/src/basic/MainFrame.java
/* Copyright (c) 2022-2023 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distrib...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/demo-multi-app/src/basic/ToolPanel.java
demo-multi-app/src/basic/ToolPanel.java
/* Copyright (c) 2022 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/demo-multi-app/src/basic/AlwaysDisplayedPanel.java
demo-multi-app/src/basic/AlwaysDisplayedPanel.java
/* Copyright (c) 2022 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/demo-multi-app/src/basic/ThemesPanel.java
demo-multi-app/src/basic/ThemesPanel.java
/* Copyright (c) 2023 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/demo-multi-app/src/basic/OutputPanel.java
demo-multi-app/src/basic/OutputPanel.java
package basic; import io.github.andrewauclair.moderndocking.DockableStyle; import io.github.andrewauclair.moderndocking.DockingProperty; import io.github.andrewauclair.moderndocking.api.DockingAPI; import java.util.Enumeration; import java.util.HashMap; import java.util.Map; import javax.swing.BorderFactory; import ja...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/demo-multi-app/src/basic/MultipleInstances.java
demo-multi-app/src/basic/MultipleInstances.java
/* Copyright (c) 2023 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/demo-multi-app/src/exception/CheckThreadViolationRepaintManager.java
demo-multi-app/src/exception/CheckThreadViolationRepaintManager.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless required by applicable law or agreed to in writing, software distributed...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/demo-multi-app/src/exception/EdtViolationException.java
demo-multi-app/src/exception/EdtViolationException.java
/* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the Licen...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/demo-multi-app/src/exception/FailOnThreadViolationRepaintManager.java
demo-multi-app/src/exception/FailOnThreadViolationRepaintManager.java
/* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the Licen...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/demo-multi-app/src/examples/Display.java
demo-multi-app/src/examples/Display.java
package examples; public class Display { }
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/demo-multi-app/src/examples/BringToFront.java
demo-multi-app/src/examples/BringToFront.java
package examples; public class BringToFront { }
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/demo-multi-app/src/examples/Maximize.java
demo-multi-app/src/examples/Maximize.java
package examples; public class Maximize { }
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/module-info.java
docking-api/src/module-info.java
/** * Module for the Modern Docking framework */ module modern_docking.api { requires java.desktop; requires java.logging; exports io.github.andrewauclair.moderndocking; exports io.github.andrewauclair.moderndocking.event; exports io.github.andrewauclair.moderndocking.exception; exports io.github.andrewa...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/Property.java
docking-api/src/io/github/andrewauclair/moderndocking/Property.java
package io.github.andrewauclair.moderndocking; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectOutputStream; import java.io.Serializable; import java.util.Base64; /** * Base class for all Property classes */ public abstract class Property { private final String name; ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/DockableTabPreference.java
docking-api/src/io/github/andrewauclair/moderndocking/DockableTabPreference.java
/* Copyright (c) 2024 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/DockableStyle.java
docking-api/src/io/github/andrewauclair/moderndocking/DockableStyle.java
/* Copyright (c) 2022 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/DynamicDockableParameters.java
docking-api/src/io/github/andrewauclair/moderndocking/DynamicDockableParameters.java
/* Copyright (c) 2025 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/DockingRegion.java
docking-api/src/io/github/andrewauclair/moderndocking/DockingRegion.java
/* Copyright (c) 2022 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/DockingProperty.java
docking-api/src/io/github/andrewauclair/moderndocking/DockingProperty.java
/* Copyright (c) 2023 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/Dockable.java
docking-api/src/io/github/andrewauclair/moderndocking/Dockable.java
/* Copyright (c) 2022 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/settings/Settings.java
docking-api/src/io/github/andrewauclair/moderndocking/settings/Settings.java
/* Copyright (c) 2023 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/exception/DockableRegistrationFailureException.java
docking-api/src/io/github/andrewauclair/moderndocking/exception/DockableRegistrationFailureException.java
/* Copyright (c) 2022-2024 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distrib...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/exception/DockableNotFoundException.java
docking-api/src/io/github/andrewauclair/moderndocking/exception/DockableNotFoundException.java
/* Copyright (c) 2022-2024 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distrib...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/exception/NotDockedException.java
docking-api/src/io/github/andrewauclair/moderndocking/exception/NotDockedException.java
/* Copyright (c) 2022-2024 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distrib...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/exception/RootDockingPanelNotFoundException.java
docking-api/src/io/github/andrewauclair/moderndocking/exception/RootDockingPanelNotFoundException.java
/* Copyright (c) 2024 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/exception/DockingLayoutException.java
docking-api/src/io/github/andrewauclair/moderndocking/exception/DockingLayoutException.java
/* Copyright (c) 2023-2024 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distrib...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/exception/RootDockingPanelRegistrationFailureException.java
docking-api/src/io/github/andrewauclair/moderndocking/exception/RootDockingPanelRegistrationFailureException.java
/* Copyright (c) 2024 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/api/DockingAPI.java
docking-api/src/io/github/andrewauclair/moderndocking/api/DockingAPI.java
/* Copyright (c) 2023-2024 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distrib...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
true
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/api/WindowLayoutBuilderAPI.java
docking-api/src/io/github/andrewauclair/moderndocking/api/WindowLayoutBuilderAPI.java
/* Copyright (c) 2022 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/api/LayoutPersistenceAPI.java
docking-api/src/io/github/andrewauclair/moderndocking/api/LayoutPersistenceAPI.java
/* Copyright (c) 2023-2024 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distrib...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
true
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/api/RootDockingPanelAPI.java
docking-api/src/io/github/andrewauclair/moderndocking/api/RootDockingPanelAPI.java
/* Copyright (c) 2022 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/api/DockingStateAPI.java
docking-api/src/io/github/andrewauclair/moderndocking/api/DockingStateAPI.java
/* Copyright (c) 2022 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/api/AppStateAPI.java
docking-api/src/io/github/andrewauclair/moderndocking/api/AppStateAPI.java
/* Copyright (c) 2022-2024 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distrib...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/layouts/DefaultDynamicDockableCreationListener.java
docking-api/src/io/github/andrewauclair/moderndocking/layouts/DefaultDynamicDockableCreationListener.java
package io.github.andrewauclair.moderndocking.layouts; import io.github.andrewauclair.moderndocking.Dockable; import io.github.andrewauclair.moderndocking.DynamicDockableParameters; import io.github.andrewauclair.moderndocking.Property; import io.github.andrewauclair.moderndocking.api.DockingAPI; import io.github.andr...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/layouts/DockingSplitPanelNode.java
docking-api/src/io/github/andrewauclair/moderndocking/layouts/DockingSplitPanelNode.java
/* Copyright (c) 2022-2023 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distri...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/layouts/WindowLayout.java
docking-api/src/io/github/andrewauclair/moderndocking/layouts/WindowLayout.java
/* Copyright (c) 2022 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/layouts/DockingLayoutRootNode.java
docking-api/src/io/github/andrewauclair/moderndocking/layouts/DockingLayoutRootNode.java
/* Copyright (c) 2023 Andrew Auclair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, ...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false
andrewauclair/ModernDocking
https://github.com/andrewauclair/ModernDocking/blob/cb69cbcf9bad74d73b1e32de5f813e86872d20e6/docking-api/src/io/github/andrewauclair/moderndocking/layouts/DynamicDockableCreationListener.java
docking-api/src/io/github/andrewauclair/moderndocking/layouts/DynamicDockableCreationListener.java
package io.github.andrewauclair.moderndocking.layouts; import io.github.andrewauclair.moderndocking.Dockable; import io.github.andrewauclair.moderndocking.Property; import java.util.Map; public interface DynamicDockableCreationListener { Dockable createDockable(String persistentID, String className, String titleT...
java
MIT
cb69cbcf9bad74d73b1e32de5f813e86872d20e6
2026-01-05T02:41:37.174237Z
false