View History\-1d76b5c0\entries.json
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
{"version":1,"resource":"file:///c%3A/Program%20Files/Adobe/Adobe%20Photoshop%20CC%202019/Presets/Scripts/DuplicateLayerAndExportText.jsx","entries":[{"id":"CUsl.jsx","timestamp":1649839781848},{"id":"1WDE.jsx","timestamp":1649839796627}]} |
View ActionTouch.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
public class ActionTouch implements View.OnTouchListener { | |
private View.OnClickListener onClickListener; | |
public ActionTouch(View.OnClickListener onClickListener) { | |
this.onClickListener = onClickListener; | |
} | |
@Override | |
public boolean onTouch(View v, MotionEvent event) { |
View src_Main.kt
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
import java.math.BigDecimal | |
import java.time.LocalDateTime | |
fun main() { | |
// Setup Test Orders | |
val firstOrderLines = listOf(OrdersAnalyzer.OrderLine(9872, "Pencil", 3, BigDecimal.valueOf(3))) | |
val firstOrder = OrdersAnalyzer.Order(554, LocalDateTime.parse("2017-03-25T10:35:20"), firstOrderLines) | |
val secondOrderLines = listOf(OrdersAnalyzer.OrderLine(9872, "Pencil", 2, BigDecimal.valueOf(3)), | |
OrdersAnalyzer.OrderLine(1746, "Eraser", 1, BigDecimal.valueOf(1))) |