Skip to content

Commit

Permalink
Renaming pFactor to parallaxFactor
Browse files Browse the repository at this point in the history
  • Loading branch information
iampkhan committed Sep 5, 2016
1 parent 5b38f21 commit c557e93
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,36 +72,36 @@ public LayoutParams(int width, int height) {
super(width, height);
}

public LayoutParams(int width, int height, float pFactor) {
public LayoutParams(int width, int height, float parallaxFactor) {
super(width, height);
parallaxFactor = pFactor;
this.parallaxFactor = parallaxFactor;
}

public LayoutParams(int width, int height, int gravity) {
super(width, height, gravity);
}

public LayoutParams(int width, int height, int gravity, float pFactor) {
public LayoutParams(int width, int height, int gravity, float parallaxFactor) {
super(width, height, gravity);
parallaxFactor = pFactor;
this.parallaxFactor = parallaxFactor;
}

public LayoutParams(ViewGroup.LayoutParams source) {
super(source);
}

public LayoutParams(ViewGroup.LayoutParams source, float pFactor) {
public LayoutParams(ViewGroup.LayoutParams source, float parallaxFactor) {
super(source);
parallaxFactor = pFactor;
this.parallaxFactor = parallaxFactor;
}

public LayoutParams(MarginLayoutParams source) {
super(source);
}

public LayoutParams(MarginLayoutParams source, float pFactor) {
public LayoutParams(MarginLayoutParams source, float parallaxFactor) {
super(source);
parallaxFactor = pFactor;
this.parallaxFactor = parallaxFactor;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,36 +72,36 @@ public LayoutParams(int width, int height) {
super(width, height);
}

public LayoutParams(int width, int height, float pFactor) {
public LayoutParams(int width, int height, float parallaxFactor) {
super(width, height);
parallaxFactor = pFactor;
this.parallaxFactor = parallaxFactor;
}

public LayoutParams(int width, int height, int gravity) {
super(width, height, gravity);
}

public LayoutParams(int width, int height, int gravity, float pFactor) {
public LayoutParams(int width, int height, int gravity, float parallaxFactor) {
super(width, height, gravity);
parallaxFactor = pFactor;
this.parallaxFactor = parallaxFactor;
}

public LayoutParams(ViewGroup.LayoutParams source) {
super(source);
}

public LayoutParams(ViewGroup.LayoutParams source, float pFactor) {
public LayoutParams(ViewGroup.LayoutParams source, float parallaxFactor) {
super(source);
parallaxFactor = pFactor;
this.parallaxFactor = parallaxFactor;
}

public LayoutParams(MarginLayoutParams source) {
super(source);
}

public LayoutParams(MarginLayoutParams source, float pFactor) {
public LayoutParams(MarginLayoutParams source, float parallaxFactor) {
super(source);
parallaxFactor = pFactor;
this.parallaxFactor = parallaxFactor;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,27 +72,27 @@ public LayoutParams(int width, int height) {
super(width, height);
}

public LayoutParams(int width, int height, float pFactor) {
public LayoutParams(int width, int height, float parallaxFactor) {
super(width, height);
parallaxFactor = pFactor;
this.parallaxFactor = parallaxFactor;
}

public LayoutParams(ViewGroup.LayoutParams source) {
super(source);
}

public LayoutParams(ViewGroup.LayoutParams source, float pFactor) {
public LayoutParams(ViewGroup.LayoutParams source, float parallaxFactor) {
super(source);
parallaxFactor = pFactor;
this.parallaxFactor = parallaxFactor;
}

public LayoutParams(MarginLayoutParams source) {
super(source);
}

public LayoutParams(MarginLayoutParams source, float pFactor) {
public LayoutParams(MarginLayoutParams source, float parallaxFactor) {
super(source);
parallaxFactor = pFactor;
this.parallaxFactor = parallaxFactor;
}
}

Expand Down

0 comments on commit c557e93

Please sign in to comment.