This file contains hidden or 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
| var myStyle = function getStyle(className_) { | |
| var styleSheets = window.document.styleSheets; | |
| var styleSheetsLength = styleSheets.length; | |
| for(var i = 0; i < styleSheetsLength; i++){ | |
| var classes = styleSheets[i].rules || styleSheets[i].cssRules; | |
| if (!classes) | |
| continue; | |
| var classesLength = classes.length; | |
| for (var x = 0; x < classesLength; x++) { |
This file contains hidden or 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
| package http; | |
| import java.io.*; | |
| import java.net.HttpURLConnection; | |
| import java.net.Proxy; | |
| import java.net.URL; | |
| import java.util.logging.Level; | |
| import java.util.logging.Logger; | |
| import moped.common.Utils; |
This file contains hidden or 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
| package com.ellypos.rmq; | |
| import java.util.logging.Level; | |
| import java.util.logging.Logger; | |
| /** | |
| * Log mock. Provides same method signatures as android logger or at least minimal replacement | |
| * @author mgustin | |
| * | |
| */ |
OlderNewer