Skip to content
This repository was archived by the owner on Dec 30, 2022. It is now read-only.

Commit 758fa9e

Browse files
author
Pavel-Teplitsky
committed
Added LoadedPageWrapper.java
1 parent 5300fb9 commit 758fa9e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package com.aliensoft.quickview.domain.wrapper;
2+
3+
/**
4+
* @author Alex Bobkov
5+
*/
6+
public class LoadedPageWrapper {
7+
private String pageHtml;
8+
private String angle;
9+
10+
public String getPageHtml() {
11+
return pageHtml;
12+
}
13+
14+
public void setPageHtml(String pageHtml) {
15+
this.pageHtml = pageHtml;
16+
}
17+
18+
public String getAngle() {
19+
return angle;
20+
}
21+
22+
public void setAngle(String angle) {
23+
this.angle = angle;
24+
}
25+
}

0 commit comments

Comments
 (0)