-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Michael Girgis <[email protected]>
- Loading branch information
Showing
477 changed files
with
12,042 additions
and
26 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
o/classes |
Binary file added
BIN
+76.5 KB
liband/build/.transforms/e950e3c005e0be24b895f3103992f5ba/classes/classes.dex
Binary file not shown.
85 changes: 85 additions & 0 deletions
85
...base_class_source_out/debug/out/com/liband/databinding/DailogFragmentEditTextBinding.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
// Generated by data binding compiler. Do not edit! | ||
package com.liband.databinding; | ||
|
||
import android.view.LayoutInflater; | ||
import android.view.View; | ||
import android.view.ViewGroup; | ||
import android.widget.EditText; | ||
import androidx.annotation.NonNull; | ||
import androidx.annotation.Nullable; | ||
import androidx.constraintlayout.widget.ConstraintLayout; | ||
import androidx.databinding.DataBindingUtil; | ||
import androidx.databinding.ViewDataBinding; | ||
import com.liband.R; | ||
import java.lang.Deprecated; | ||
import java.lang.Object; | ||
|
||
public abstract class DailogFragmentEditTextBinding extends ViewDataBinding { | ||
@NonNull | ||
public final ConstraintLayout editName; | ||
|
||
@NonNull | ||
public final EditText txtYourName; | ||
|
||
protected DailogFragmentEditTextBinding(Object _bindingComponent, View _root, | ||
int _localFieldCount, ConstraintLayout editName, EditText txtYourName) { | ||
super(_bindingComponent, _root, _localFieldCount); | ||
this.editName = editName; | ||
this.txtYourName = txtYourName; | ||
} | ||
|
||
@NonNull | ||
public static DailogFragmentEditTextBinding inflate(@NonNull LayoutInflater inflater, | ||
@Nullable ViewGroup root, boolean attachToRoot) { | ||
return inflate(inflater, root, attachToRoot, DataBindingUtil.getDefaultComponent()); | ||
} | ||
|
||
/** | ||
* This method receives DataBindingComponent instance as type Object instead of | ||
* type DataBindingComponent to avoid causing too many compilation errors if | ||
* compilation fails for another reason. | ||
* https://issuetracker.google.com/issues/116541301 | ||
* @Deprecated Use DataBindingUtil.inflate(inflater, R.layout.dailog_fragment_edit_text, root, attachToRoot, component) | ||
*/ | ||
@NonNull | ||
@Deprecated | ||
public static DailogFragmentEditTextBinding inflate(@NonNull LayoutInflater inflater, | ||
@Nullable ViewGroup root, boolean attachToRoot, @Nullable Object component) { | ||
return ViewDataBinding.<DailogFragmentEditTextBinding>inflateInternal(inflater, R.layout.dailog_fragment_edit_text, root, attachToRoot, component); | ||
} | ||
|
||
@NonNull | ||
public static DailogFragmentEditTextBinding inflate(@NonNull LayoutInflater inflater) { | ||
return inflate(inflater, DataBindingUtil.getDefaultComponent()); | ||
} | ||
|
||
/** | ||
* This method receives DataBindingComponent instance as type Object instead of | ||
* type DataBindingComponent to avoid causing too many compilation errors if | ||
* compilation fails for another reason. | ||
* https://issuetracker.google.com/issues/116541301 | ||
* @Deprecated Use DataBindingUtil.inflate(inflater, R.layout.dailog_fragment_edit_text, null, false, component) | ||
*/ | ||
@NonNull | ||
@Deprecated | ||
public static DailogFragmentEditTextBinding inflate(@NonNull LayoutInflater inflater, | ||
@Nullable Object component) { | ||
return ViewDataBinding.<DailogFragmentEditTextBinding>inflateInternal(inflater, R.layout.dailog_fragment_edit_text, null, false, component); | ||
} | ||
|
||
public static DailogFragmentEditTextBinding bind(@NonNull View view) { | ||
return bind(view, DataBindingUtil.getDefaultComponent()); | ||
} | ||
|
||
/** | ||
* This method receives DataBindingComponent instance as type Object instead of | ||
* type DataBindingComponent to avoid causing too many compilation errors if | ||
* compilation fails for another reason. | ||
* https://issuetracker.google.com/issues/116541301 | ||
* @Deprecated Use DataBindingUtil.bind(view, component) | ||
*/ | ||
@Deprecated | ||
public static DailogFragmentEditTextBinding bind(@NonNull View view, @Nullable Object component) { | ||
return (DailogFragmentEditTextBinding)bind(component, view, R.layout.dailog_fragment_edit_text); | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
liband/build/generated/source/buildConfig/debug/com/liband/BuildConfig.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* Automatically generated file. DO NOT MODIFY | ||
*/ | ||
package com.liband; | ||
|
||
public final class BuildConfig { | ||
public static final boolean DEBUG = Boolean.parseBoolean("true"); | ||
public static final String LIBRARY_PACKAGE_NAME = "com.liband"; | ||
public static final String BUILD_TYPE = "debug"; | ||
public static final int VERSION_CODE = 1; | ||
public static final String VERSION_NAME = "1.0"; | ||
} |
6 changes: 6 additions & 0 deletions
6
liband/build/generated/source/dataBinding/trigger/debug/com/liband/DataBindingInfo.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package com.liband; | ||
|
||
import androidx.databinding.BindingBuildInfo; | ||
|
||
@BindingBuildInfo | ||
public class DataBindingInfo {} |
4 changes: 4 additions & 0 deletions
4
liband/build/generated/source/kapt/debug/androidx/databinding/DataBindingComponent 2.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package androidx.databinding; | ||
|
||
public interface DataBindingComponent { | ||
} |
4 changes: 4 additions & 0 deletions
4
liband/build/generated/source/kapt/debug/androidx/databinding/DataBindingComponent.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package androidx.databinding; | ||
|
||
public interface DataBindingComponent { | ||
} |
5 changes: 5 additions & 0 deletions
5
liband/build/generated/source/kapt/debug/androidx/databinding/library/baseAdapters/BR 2.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package androidx.databinding.library.baseAdapters; | ||
|
||
public class BR { | ||
public static int _all = 0; | ||
} |
5 changes: 5 additions & 0 deletions
5
liband/build/generated/source/kapt/debug/androidx/databinding/library/baseAdapters/BR.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package androidx.databinding.library.baseAdapters; | ||
|
||
public class BR { | ||
public static int _all = 0; | ||
} |
5 changes: 5 additions & 0 deletions
5
liband/build/generated/source/kapt/debug/com/liband/BR 2.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package com.liband; | ||
|
||
public class BR { | ||
public static int _all = 0; | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package com.liband; | ||
|
||
public class BR { | ||
public static int _all = 0; | ||
} |
103 changes: 103 additions & 0 deletions
103
liband/build/generated/source/kapt/debug/com/liband/DataBinderMapperImpl.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
package com.liband; | ||
|
||
import android.util.SparseArray; | ||
import android.util.SparseIntArray; | ||
import android.view.View; | ||
import androidx.databinding.DataBinderMapper; | ||
import androidx.databinding.DataBindingComponent; | ||
import androidx.databinding.ViewDataBinding; | ||
import com.liband.databinding.DailogFragmentEditTextBindingImpl; | ||
import java.lang.IllegalArgumentException; | ||
import java.lang.Integer; | ||
import java.lang.Object; | ||
import java.lang.Override; | ||
import java.lang.RuntimeException; | ||
import java.lang.String; | ||
import java.util.ArrayList; | ||
import java.util.HashMap; | ||
import java.util.List; | ||
|
||
public class DataBinderMapperImpl extends DataBinderMapper { | ||
private static final int LAYOUT_DAILOGFRAGMENTEDITTEXT = 1; | ||
|
||
private static final SparseIntArray INTERNAL_LAYOUT_ID_LOOKUP = new SparseIntArray(1); | ||
|
||
static { | ||
INTERNAL_LAYOUT_ID_LOOKUP.put(com.liband.R.layout.dailog_fragment_edit_text, LAYOUT_DAILOGFRAGMENTEDITTEXT); | ||
} | ||
|
||
@Override | ||
public ViewDataBinding getDataBinder(DataBindingComponent component, View view, int layoutId) { | ||
int localizedLayoutId = INTERNAL_LAYOUT_ID_LOOKUP.get(layoutId); | ||
if(localizedLayoutId > 0) { | ||
final Object tag = view.getTag(); | ||
if(tag == null) { | ||
throw new RuntimeException("view must have a tag"); | ||
} | ||
switch(localizedLayoutId) { | ||
case LAYOUT_DAILOGFRAGMENTEDITTEXT: { | ||
if ("layout/dailog_fragment_edit_text_0".equals(tag)) { | ||
return new DailogFragmentEditTextBindingImpl(component, view); | ||
} | ||
throw new IllegalArgumentException("The tag for dailog_fragment_edit_text is invalid. Received: " + tag); | ||
} | ||
} | ||
} | ||
return null; | ||
} | ||
|
||
@Override | ||
public ViewDataBinding getDataBinder(DataBindingComponent component, View[] views, int layoutId) { | ||
if(views == null || views.length == 0) { | ||
return null; | ||
} | ||
int localizedLayoutId = INTERNAL_LAYOUT_ID_LOOKUP.get(layoutId); | ||
if(localizedLayoutId > 0) { | ||
final Object tag = views[0].getTag(); | ||
if(tag == null) { | ||
throw new RuntimeException("view must have a tag"); | ||
} | ||
switch(localizedLayoutId) { | ||
} | ||
} | ||
return null; | ||
} | ||
|
||
@Override | ||
public int getLayoutId(String tag) { | ||
if (tag == null) { | ||
return 0; | ||
} | ||
Integer tmpVal = InnerLayoutIdLookup.sKeys.get(tag); | ||
return tmpVal == null ? 0 : tmpVal; | ||
} | ||
|
||
@Override | ||
public String convertBrIdToString(int localId) { | ||
String tmpVal = InnerBrLookup.sKeys.get(localId); | ||
return tmpVal; | ||
} | ||
|
||
@Override | ||
public List<DataBinderMapper> collectDependencies() { | ||
ArrayList<DataBinderMapper> result = new ArrayList<DataBinderMapper>(1); | ||
result.add(new androidx.databinding.library.baseAdapters.DataBinderMapperImpl()); | ||
return result; | ||
} | ||
|
||
private static class InnerBrLookup { | ||
static final SparseArray<String> sKeys = new SparseArray<String>(1); | ||
|
||
static { | ||
sKeys.put(0, "_all"); | ||
} | ||
} | ||
|
||
private static class InnerLayoutIdLookup { | ||
static final HashMap<String, Integer> sKeys = new HashMap<String, Integer>(1); | ||
|
||
static { | ||
sKeys.put("layout/dailog_fragment_edit_text_0", com.liband.R.layout.dailog_fragment_edit_text); | ||
} | ||
} | ||
} |
87 changes: 87 additions & 0 deletions
87
...generated/source/kapt/debug/com/liband/databinding/DailogFragmentEditTextBindingImpl.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
package com.liband.databinding; | ||
import com.liband.R; | ||
import com.liband.BR; | ||
import androidx.annotation.NonNull; | ||
import androidx.annotation.Nullable; | ||
import android.view.View; | ||
@SuppressWarnings("unchecked") | ||
public class DailogFragmentEditTextBindingImpl extends DailogFragmentEditTextBinding { | ||
|
||
@Nullable | ||
private static final androidx.databinding.ViewDataBinding.IncludedLayouts sIncludes; | ||
@Nullable | ||
private static final android.util.SparseIntArray sViewsWithIds; | ||
static { | ||
sIncludes = null; | ||
sViewsWithIds = new android.util.SparseIntArray(); | ||
sViewsWithIds.put(R.id.txt_your_name, 1); | ||
} | ||
// views | ||
// variables | ||
// values | ||
// listeners | ||
// Inverse Binding Event Handlers | ||
|
||
public DailogFragmentEditTextBindingImpl(@Nullable androidx.databinding.DataBindingComponent bindingComponent, @NonNull View root) { | ||
this(bindingComponent, root, mapBindings(bindingComponent, root, 2, sIncludes, sViewsWithIds)); | ||
} | ||
private DailogFragmentEditTextBindingImpl(androidx.databinding.DataBindingComponent bindingComponent, View root, Object[] bindings) { | ||
super(bindingComponent, root, 0 | ||
, (androidx.constraintlayout.widget.ConstraintLayout) bindings[0] | ||
, (android.widget.EditText) bindings[1] | ||
); | ||
this.editName.setTag(null); | ||
setRootTag(root); | ||
// listeners | ||
invalidateAll(); | ||
} | ||
|
||
@Override | ||
public void invalidateAll() { | ||
synchronized(this) { | ||
mDirtyFlags = 0x1L; | ||
} | ||
requestRebind(); | ||
} | ||
|
||
@Override | ||
public boolean hasPendingBindings() { | ||
synchronized(this) { | ||
if (mDirtyFlags != 0) { | ||
return true; | ||
} | ||
} | ||
return false; | ||
} | ||
|
||
@Override | ||
public boolean setVariable(int variableId, @Nullable Object variable) { | ||
boolean variableSet = true; | ||
return variableSet; | ||
} | ||
|
||
@Override | ||
protected boolean onFieldChange(int localFieldId, Object object, int fieldId) { | ||
switch (localFieldId) { | ||
} | ||
return false; | ||
} | ||
|
||
@Override | ||
protected void executeBindings() { | ||
long dirtyFlags = 0; | ||
synchronized(this) { | ||
dirtyFlags = mDirtyFlags; | ||
mDirtyFlags = 0; | ||
} | ||
// batch finished | ||
} | ||
// Listener Stub Implementations | ||
// callback impls | ||
// dirty flag | ||
private long mDirtyFlags = 0xffffffffffffffffL; | ||
/* flag mapping | ||
flag 0 (0x1L): null | ||
flag mapping end*/ | ||
//end | ||
} |
Oops, something went wrong.